Oracle
 sql >> Baza danych >  >> RDS >> Oracle

PLSQL JDBC:Jak uzyskać identyfikator ostatniego wiersza?

Normalnie użyjesz Statement#getGeneratedKeys() w tym celu (zobacz także tę odpowiedź na przykład), ale jest to (nadal) nieobsługiwane przez sterownik Oracle JDBC.

Najlepiej jest albo skorzystaj z CallableStatement z RETURNING klauzula:

String sql = "BEGIN INSERT INTO mytable(id, content) VALUES (seq_mytable.NEXTVAL(), ?) RETURNING id INTO ?; END;";

Connection connection = null;
CallableStatement statement = null;

try {
    connection = database.getConnection();
    statement = connection.prepareCall(sql);
    statement.setString(1, "test");
    statement.registerOutParameter(2, Types.NUMERIC);
    statement.execute();
    int id = statement.getInt(2);
    // ...

Lub uruchom SELECT sequencename.CURRVAL po INSERT w tej samej transakcji:

String sql_insert = "INSERT INTO mytable(content) VALUES (?)";
String sql_currval = "SELECT seq_mytable.CURRVAL FROM dual";

Connection connection = null;
PreparedStatement statement = null;
Statement currvalStatement = null;
ResultSet currvalResultSet = null;

try {
    connection = database.getConnection();
    connection.setAutoCommit(false);
    statement = connection.prepareStatement(sql_insert);
    statement.setString(1, "test");
    statement.executeUpdate();
    currvalStatement = connection.createStatement();
    currvalResultSet = currvalStatement.executeQuery(sql_currval);
    if (currvalResultSet.next()) {
        int id = currvalResultSet.getInt(1);
    }
    connection.commit();
    // ...


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Używanie nazw usług Oracle z SQLAlchemy

  2. Wprowadzenie do kolekcji PL/SQL w bazie danych Oracle

  3. Jak mogę wykonać natywny skrypt SQL w JPA/Hibernacji?

  4. Zapytanie, aby znaleźć pełne skany tabeli w Oracle

  5. Oracle ORA-01008:nie wszystkie zmienne powiązane Błąd z parametrami