summaryrefslogtreecommitdiff
path: root/static/netbsd/man3/sqlite3_set_last_insert_rowid.3
diff options
context:
space:
mode:
Diffstat (limited to 'static/netbsd/man3/sqlite3_set_last_insert_rowid.3')
-rw-r--r--static/netbsd/man3/sqlite3_set_last_insert_rowid.323
1 files changed, 23 insertions, 0 deletions
diff --git a/static/netbsd/man3/sqlite3_set_last_insert_rowid.3 b/static/netbsd/man3/sqlite3_set_last_insert_rowid.3
new file mode 100644
index 00000000..dea0d1a3
--- /dev/null
+++ b/static/netbsd/man3/sqlite3_set_last_insert_rowid.3
@@ -0,0 +1,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