Jedynym sposobem powrotu niektórych sterowników JDBC Statement.RETURN_GENERATED_KEYS
jest wykonanie następujących czynności:
long key = -1L;
Statement statement = connection.createStatement();
statement.executeUpdate(YOUR_SQL_HERE, Statement.RETURN_GENERATED_KEYS);
ResultSet rs = statement.getGeneratedKeys();
if (rs != null && rs.next()) {
key = rs.getLong(1);
}
Czy jest sposób, aby zrobić to samo PreparedStatement
?
Edytować
Powód, dla którego zapytałem, czy mogę zrobić to samo, PreparedStatement
rozważ następujący scenariusz:
private static final String SQL_CREATE =
"INSERT INTO
USER(FIRST_NAME, MIDDLE_NAME, LAST_NAME, EMAIL_ADDRESS, DOB)
VALUES (?, ?, ?, ?, ?)";
W USER
tabeli znajduje się PRIMARY KEY (USER_ID)
który to a BIGINT AUTOINCREMENT
(dlatego nie widzisz go w SQL_CREATE
String.
Teraz wypełniam plik ?
using PreparedStatement.setXXXX(index, value)
. Chcę wrócić ResultSet rs = PreparedStatement.getGeneratedKeys()
. Jak mogę to osiągnąć?
This method with argument cannot be called on a PreparedStatement or CallableStatement.
Dokument Java mówi, że oznacza to, że musimy używać funkcji executeUpdate () bez argumentów, mimo żeexecuteUpdate(arg)
metoda może być dziedziczona w klasie PreparedStatement, ale nie musimy jej używać, w przeciwnym razie otrzymamy SQLException.Odpowiedzi:
Możesz użyć
prepareStatement
metody pobierającej dodatkowyint
parametrW przypadku niektórych sterowników JDBC (na przykład Oracle) musisz jawnie podać nazwy kolumn lub indeksy wygenerowanych kluczy:
PreparedStatement ps = con.prepareStatement(sql, new String[]{"USER_ID"})
źródło
Masz na myśli coś takiego?
long key = -1L; PreparedStatement preparedStatement = connection.prepareStatement(YOUR_SQL_HERE, PreparedStatement.RETURN_GENERATED_KEYS); preparedStatement.setXXX(index, VALUE); preparedStatement.executeUpdate(); ResultSet rs = preparedStatement.getGeneratedKeys(); if (rs.next()) { key = rs.getLong(1); }
źródło
Nie mając teraz kompilatora, odpowiem zadając pytanie:
Czy próbowałeś tego? Czy to działa?
long key = -1L; PreparedStatement statement = connection.prepareStatement(); statement.executeUpdate(YOUR_SQL_HERE, PreparedStatement.RETURN_GENERATED_KEYS); ResultSet rs = statement.getGeneratedKeys(); if (rs != null && rs.next()) { key = rs.getLong(1); }
Zastrzeżenie: Oczywiście nie skompilowałem tego, ale masz pomysł.
PreparedStatement jest podinterfejsem Statement , więc nie widzę powodu, dla którego to nie zadziałałoby, chyba że niektóre sterowniki JDBC zawierają błędy.
źródło
PreparedStatement
jest to podklasaStatement
… zobacz mój zaktualizowany post.String query = "INSERT INTO ...."; PreparedStatement preparedStatement = connection.prepareStatement(query, PreparedStatement.RETURN_GENERATED_KEYS); preparedStatement.setXXX(1, VALUE); preparedStatement.setXXX(2, VALUE); .... preparedStatement.executeUpdate(); ResultSet rs = preparedStatement.getGeneratedKeys(); int key = rs.next() ? rs.getInt(1) : 0; if(key!=0){ System.out.println("Generated key="+key); }
źródło
private void alarmEventInsert(DriveDetail driveDetail, String vehicleRegNo, int organizationId) { final String ALARM_EVENT_INS_SQL = "INSERT INTO alarm_event (event_code,param1,param2,org_id,created_time) VALUES (?,?,?,?,?)"; CachedConnection conn = JDatabaseManager.getConnection(); PreparedStatement ps = null; ResultSet generatedKeys = null; try { ps = conn.prepareStatement(ALARM_EVENT_INS_SQL, ps.RETURN_GENERATED_KEYS); ps.setInt(1, driveDetail.getEventCode()); ps.setString(2, vehicleRegNo); ps.setString(3, null); ps.setInt(4, organizationId); ps.setString(5, driveDetail.getCreateTime()); ps.execute(); generatedKeys = ps.getGeneratedKeys(); if (generatedKeys.next()) { driveDetail.setStopDuration(generatedKeys.getInt(1)); } } catch (SQLException e) { e.printStackTrace(); logger.error("Error inserting into alarm_event : {}", e .getMessage()); logger.info(ps.toString()); } finally { if (ps != null) { try { if (ps != null) ps.close(); } catch (SQLException e) { logger.error("Error closing prepared statements : {}", e .getMessage()); } } } JDatabaseManager.freeConnection(conn); }
źródło