web-dev-qa-db-ja.com

SQLiteで最後の挿入IDを取得するにはどうすればよいですか?

最後に挿入された行IDをフェッチするためにSQLiteで使用できる組み込み関数はありますか?たとえば:-mysqlでは、このような関数をLAST_INSERT_ID()にしています。 sqlliteの場合、同じプロセスを実行するために使用できる任意の関数。

私を助けてください。

ありがとう

20
DEVOPS

SQLite

これは SQLite last_insert_rowid() function を使用して利用できます:

Last_insert_rowid()関数は、関数を呼び出したデータベース接続からの最後の行挿入のROWIDを返します。 last_insert_rowid()SQL関数は、sqlite3_last_insert_rowid()C/C++インターフェース関数のラッパーです。

PHP

PHPこの関数のバージョン/バインディングは sqlite_last_insert_rowid()

自動インクリメントフィールドとして作成された場合、データベースdbhandleに最後に挿入された行のROWIDを返します。

21
Treffynnon

PDO SQLiteでSQLiteバージョン3を使用すると、次のようになります。

$insert = "INSERT INTO `module` (`mid`,`description`) VALUES (
            NULL,
            :text
            );
        ";
$stmt = $conn->prepare($insert);
$stmt->execute(array(':text'=> $text));

echo $conn->lastInsertId()
15

last_insert_rowid()

Last_insert_rowid()関数は、関数を呼び出したデータベース接続から最後の行挿入のROWIDを返します。

4
Alex K.
2
Alex Pliutau

これは私のために働いている短いC#メソッドです。 Int32は私の目的には十分な大きさです。

public static Int32 GetNextID( SqliteConnection AConnection )
{
  Int32 result = -1;

  using ( SqliteCommand cmd = AConnection.CreateCommand() )
  {
    cmd.CommandText = "SELECT last_insert_rowid();";
    using ( SqliteDataReader r = cmd.ExecuteReader() )
    {
      if ( r.Read() )
        result = (Int32) r.GetInt64( 0 );
    }
  }

  return result;
}
1
Gary Z