blob: dea0d1a3659607cf0466bd2553ab5c23af5197c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
.Dd January 24, 2024
.Dt SQLITE3_SET_LAST_INSERT_ROWID 3
.Os
.Sh NAME
.Nm sqlite3_set_last_insert_rowid
.Nd set the last insert rowid value
.Sh SYNOPSIS
.In sqlite3.h
.Ft void
.Fo sqlite3_set_last_insert_rowid
.Fa "sqlite3*"
.Fa "sqlite3_int64"
.Fc
.Sh 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.
.Sh IMPLEMENTATION NOTES
These declarations were extracted from the
interface documentation at line 2589.
.Bd -literal
SQLITE_API void sqlite3_set_last_insert_rowid(sqlite3*,sqlite3_int64);
.Ed
|