Updated: 2022/Sep/29

Please read Privacy Policy. It's for your privacy.


SQLITE3_SET_LAST_INSERT_ROWID(3)                      Library Functions Manual

NAME
     sqlite3_set_last_insert_rowid - set the last insert rowid value

SYNOPSIS
     #include <sqlite3.h>

     void
     sqlite3_set_last_insert_rowid(sqlite3*, sqlite3_int64);

DESCRIPTION
     The sqlite3_set_last_insert_rowid(D, R) method allows the application to
     set the value returned by calling sqlite3_last_insert_rowid(D) to R
     without inserting a row into the database.

IMPLEMENTATION NOTES
     These declarations were extracted from the interface documentation at
     line 2589.

     SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3*,sqlite3_int64);

NetBSD 10.99                    August 24, 2023                   NetBSD 10.99