We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Use the auto close feature to make sure that statements are closed:
try(PreparedStatement select = learnweb.getConnection().prepareStatement("SELECT ...");) { select.setInt(1, groupId); ResultSet rs = select.executeQuery(); while(rs.next()) .... }
Try without catch in this case. Because most errors must be catched in the beans to allow notification of users.
There was an error while loading. Please reload this page.