在 JDBC 中擷取自動產生的 ID
本指南示範如何在 JDBC 環境中執行 INSERT 作業後擷取自動產生的 ID。
步驟:
準備語句: 建立一個 PreparedStatement
並使用 Statement.RETURN_GENERATED_KEYS
明確啟用對產生的金鑰的擷取。
<code class="language-java">PreparedStatement statement = connection.prepareStatement(SQL_INSERT, Statement.RETURN_GENERATED_KEYS);</code>
執行插入:執行準備好的語句將資料插入資料庫。
<code class="language-java">int affectedRows = statement.executeUpdate();</code>
擷取產生的金鑰: 使用 statement.getGeneratedKeys()
取得包含產生的金鑰的 ResultSet
。 此 ResultSet
的第一列通常將保存新產生的 ID。
<code class="language-java">try (ResultSet generatedKeys = statement.getGeneratedKeys()) { if (generatedKeys.next()) { user.setId(generatedKeys.getLong(1)); } }</code>
異常處理: 將 JDBC 程式碼包裝在 try-catch
區塊中以處理潛在的 SQLExceptions
。
<code class="language-java">try { // JDBC code from steps 1-3 } catch (SQLException e) { // Handle the exception appropriately (e.g., log the error, throw a custom exception) }</code>
重要注意事項:
Statement.getGeneratedKeys()
的行為可以是特定於資料庫和 JDBC 驅動程式的。 確保您的驅動程式支援此功能並且您的資料庫配置為自動產生 ID。
以上是如何在 JDBC 中 INSERT 後檢索自動產生的 ID?的詳細內容。更多資訊請關注PHP中文網其他相關文章!