xref: /netbsd-src/external/public-domain/sqlite/man/sqlite3_set_last_insert_rowid.3 (revision b9988867a8ad969c45a52aa7628bc932ec98d46b)
1.Dd January 24, 2024
2.Dt SQLITE3_SET_LAST_INSERT_ROWID 3
3.Os
4.Sh NAME
5.Nm sqlite3_set_last_insert_rowid
6.Nd set the last insert rowid value
7.Sh SYNOPSIS
8.In sqlite3.h
9.Ft void
10.Fo sqlite3_set_last_insert_rowid
11.Fa "sqlite3*"
12.Fa "sqlite3_int64"
13.Fc
14.Sh DESCRIPTION
15The sqlite3_set_last_insert_rowid(D, R) method allows the application
16to set the value returned by calling sqlite3_last_insert_rowid(D) to
17R without inserting a row into the database.
18.Sh IMPLEMENTATION NOTES
19These declarations were extracted from the
20interface documentation at line 2589.
21.Bd -literal
22SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3*,sqlite3_int64);
23.Ed
24