在 C# 中檢索插入的行 ID
使用 AUTO_INCREMENT 欄位取得插入行的 ID 對於後續處理至關重要。但是,在某些情況下,執行插入查詢可能不會產生預期的 ID 值。
要解決此問題,請考慮以下方法:
修改Insert 語句:
您可以使用參數佔位符並單獨設定參數值,而不是直接在查詢中指定列值。這可確保值的正確分配:
MySqlCommand comm = connect.CreateCommand(); comm.CommandText = insertStatement; comm.Parameters.AddWithValue("@invoiceDate", invoiceDate); comm.Parameters.AddWithValue("@bookFee", bookFee); comm.Parameters.AddWithValue("@adminFee", adminFee); comm.Parameters.AddWithValue("@totalFee", totalFee); comm.Parameters.AddWithValue("@customerId", customerId);
執行插入查詢:
使用 ExecuteNonQuery() 執行插入指令。此方法傳回受查詢影響的行數:
int rowsAffected = comm.ExecuteNonQuery();
擷取最後插入的ID:
成功執行插入查詢後,您可以使用LastIntedId擷取插入行的ID:
long id = comm.LastInsertedId;
以上是如何在 C# 中檢索最後插入的行 ID?的詳細內容。更多資訊請關注PHP中文網其他相關文章!