SQLITE3_SET_LAST_INSERT_ROWID(3) Library Functions Manual SQLITE3_SET_LAST_INSERT_ROWID(3)

sqlite3_set_last_insert_rowidset the last insert rowid value

#include <sqlite3.h>

void
sqlite3_set_last_insert_rowid(sqlite3*, sqlite3_int64);

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.

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

SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3*,sqlite3_int64);
January 24, 2024 NetBSD 11.0