108109110111112113114115
Statement statement = connection.createStatement(); statement.executeUpdate(updateString); statement.close(); } catch (SQLException e) { throw new UnableToSaveException(e); } }
243244245246247248249250251
origin.setId(generatedKeys.getInt(1)); } generatedKeys.close(); statement.close(); } catch (SQLException e) { throw new UnableToSaveException(e); } }
3839404142434445