]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Updates to documentation on sqlite3_last_insert_rowid(). No changes to code.
authordrh <drh@noemail.net>
Sat, 9 Nov 2013 21:19:12 +0000 (21:19 +0000)
committerdrh <drh@noemail.net>
Sat, 9 Nov 2013 21:19:12 +0000 (21:19 +0000)
FossilOrigin-Name: a4c5804efc63ff993e93f8a7b6acb6bb0a19dd3e

manifest
manifest.uuid
src/sqlite.h.in

index 022cd5679ed5120b358fd632f3200d982f4ddf82..84406f56cd5f762d280ad842bb7d8af069d4942c 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Updates\sto\srequirements\smarks.\s\sNo\schanges\sto\scode.
-D 2013-11-09T19:47:15.808
+C Updates\sto\sdocumentation\son\ssqlite3_last_insert_rowid().\s\sNo\schanges\sto\scode.
+D 2013-11-09T21:19:12.868
 F Makefile.arm-wince-mingw32ce-gcc d6df77f1f48d690bd73162294bbba7f59507c72f
 F Makefile.in d12e4455cf7a36e42d3949876c1c3b88ff70867a
 F Makefile.linux-gcc 91d710bdc4998cb015f39edf3cb314ec4f4d7e23
@@ -220,7 +220,7 @@ F src/resolve.c fc4673cc49b116e51e7f12de074c0acf8f2388f9
 F src/rowset.c 64655f1a627c9c212d9ab497899e7424a34222e0
 F src/select.c 60af46f5f6bc3803c27af3edd8881ed2d0c3f19f
 F src/shell.c 03d8d9b4052430343ff30d646334621f980f1202
-F src/sqlite.h.in a2580d959495539fe9e9c17804a90b2aca176c88
+F src/sqlite.h.in ecbd714ecc0ff710a149fc72db6552738148ad0c
 F src/sqlite3.rc 11094cc6a157a028b301a9f06b3d03089ea37c3e
 F src/sqlite3ext.h 886f5a34de171002ad46fae8c36a7d8051c190fc
 F src/sqliteInt.h 3da1940a2ba05a663e9016d57f1ea1f79ffcb03e
@@ -1135,7 +1135,7 @@ F tool/vdbe-compress.tcl f12c884766bd14277f4fcedcae07078011717381
 F tool/warnings-clang.sh f6aa929dc20ef1f856af04a730772f59283631d4
 F tool/warnings.sh d1a6de74685f360ab718efda6265994b99bbea01
 F tool/win/sqlite.vsix 030f3eeaf2cb811a3692ab9c14d021a75ce41fff
-P b1abb2b078d1cb9ec5fbd7f98221914b93632e9f
-R aea40f11c282f7222fc2eec8280533e7
+P 8a0366285b94dc43d932736e7b1eedb71e241857
+R 8962c687b916c959531dd61026cf54cb
 U drh
-Z 2a612035828de77b6077cfc0ffcba71e
+Z bcacf9dd53ba94a0cd6a00348fa6cb19
index 7db13c15d5938013faf11be3fd7e56e92caac5e0..fd8dd4079c192aced628d4806ef59b41392a83d2 100644 (file)
@@ -1 +1 @@
-8a0366285b94dc43d932736e7b1eedb71e241857
\ No newline at end of file
+a4c5804efc63ff993e93f8a7b6acb6bb0a19dd3e
\ No newline at end of file
index 3ecb1578de44950c06dd24f2af979bea1413f7e7..196186dd94440198ad8ad3822d8924d123529510 100644 (file)
@@ -1782,17 +1782,17 @@ int sqlite3_extended_result_codes(sqlite3*, int onoff);
 /*
 ** CAPI3REF: Last Insert Rowid
 **
-** ^Each entry in an SQLite table has a unique 64-bit signed
+** ^Each entry in most SQLite tables (except for [WITHOUT ROWID] tables)
+** has a unique 64-bit signed
 ** integer key called the [ROWID | "rowid"]. ^The rowid is always available
 ** as an undeclared column named ROWID, OID, or _ROWID_ as long as those
 ** names are not also used by explicitly declared columns. ^If
 ** the table has a column of type [INTEGER PRIMARY KEY] then that column
 ** is another alias for the rowid.
 **
-** ^This routine returns the [rowid] of the most recent
-** successful [INSERT] into a rowid table from the [database connection]
-** in the first argument.  ^As of SQLite version 3.7.7, this routines
-** records the last insert rowid of both ordinary tables and [virtual tables].
+** ^The sqlite3_last_insert_rowid(D) interface returns the [rowid] of the 
+** most recent successful [INSERT] into a rowid table or [virtual table]
+** on database connection D.
 ** ^Inserts into [WITHOUT ROWID] tables are not recorded.
 ** ^If no successful [INSERT]s into rowid tables
 ** have ever occurred on the database connection D,