首頁 > 資料庫 > mysql教程 > 如何使用PreparedStatements檢索自動產生的ID?

如何使用PreparedStatements檢索自動產生的ID?

Barbara Streisand
發布: 2024-11-14 19:38:01
原創
866 人瀏覽過

How to Retrieve Auto-Generated IDs with PreparedStatements?

使用PreparedStatements檢索自動產生的ID

處理資料庫操作時,擷取與插入的記錄關聯的自動產生的ID對於追蹤記錄。雖然 Statement.RETURN_GENERATED_KEYS 標誌適用於標準語句,但在使用準備好的語句時會遇到問題。

但是,有一個解:

String sql = "INSERT INTO table (column1, column2) ) 值(?, ?)";
stmt = conn.prepareStatement(sql , Statement.RETURN_GENERATED_KEYS);

stmt.executeUpdate(); // 更新資料庫
ResultSet rs = stmt.getGenerateKeys(); // 擷取產生的金鑰

if (rs. next()) {

1

long auto_id = rs.getLong(1); // Get the auto-generated ID

登入後複製

}

以上是如何使用PreparedStatements檢索自動產生的ID?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板