Add links from C/C++ interfaces to their equivalent SQL functions. Comment
changes only - no changes to code. FossilOrigin-Name: acce10f77125b5ab05d10ec10aef68dffa4e826a
This commit is contained in:
parent
c12075b3b2
commit
a94cc4206a
18
manifest
18
manifest
@ -1,8 +1,8 @@
|
||||
-----BEGIN PGP SIGNED MESSAGE-----
|
||||
Hash: SHA1
|
||||
|
||||
C Change\san\serror\smessage\sin\sFTS3\sto\savoid\susing\san\suninitialized\svariable.
|
||||
D 2009-12-02T20:25:57
|
||||
C Add\slinks\sfrom\sC/C++\sinterfaces\sto\stheir\sequivalent\sSQL\sfunctions.\s\sComment\nchanges\sonly\s-\sno\schanges\sto\scode.
|
||||
D 2009-12-03T01:01:02
|
||||
F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
|
||||
F Makefile.in c5827ead754ab32b9585487177c93bb00b9497b3
|
||||
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
|
||||
@ -167,7 +167,7 @@ F src/resolve.c d052e5c44bab34f83b3c1741aaa07478d18b5dd5
|
||||
F src/rowset.c 69afa95a97c524ba6faf3805e717b5b7ae85a697
|
||||
F src/select.c 2f9ed7482e7a25b0b127fc41693bbdbe1caf5647
|
||||
F src/shell.c f4948cb6d30665d755a6b5e0ec313d1094aab828
|
||||
F src/sqlite.h.in 4464e9772122f0447305d425e04d122b6f1bffec
|
||||
F src/sqlite.h.in 2d34605565e021851255e0bbcb15f8c1930d1f6f
|
||||
F src/sqlite3ext.h 69dfb8116af51b84a029cddb3b35062354270c89
|
||||
F src/sqliteInt.h f09be5c67f95f3d28d44e5b608b18cab28758ba4
|
||||
F src/sqliteLimit.h 3afab2291762b5d09ae20c18feb8e9fa935a60a6
|
||||
@ -778,14 +778,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
|
||||
F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
|
||||
F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
|
||||
F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
|
||||
P 1cf2136c39239a6fea6ac2a555f55865dd517d93
|
||||
R 0f4546d90604cf92dd5fde0d50285661
|
||||
P 620a8a2b38f5f2ad3db304b2bc88360285c174db
|
||||
R 9c210838cb6c09d3910666652ea7f1ce
|
||||
U drh
|
||||
Z 1284cd277d437cb9872d01d8f52cb230
|
||||
Z e99f59c59291a6d9b68b762a11b1ea55
|
||||
-----BEGIN PGP SIGNATURE-----
|
||||
Version: GnuPG v1.4.6 (GNU/Linux)
|
||||
|
||||
iD8DBQFLFs1YoxKgR168RlERAsr4AJ0Wqgh8Ks34kpZXxxzkvIRC3waMbQCfRmhw
|
||||
h0NT+TCC5NLKQEBPsOETtWk=
|
||||
=ql9X
|
||||
iD8DBQFLFw3RoxKgR168RlERAqYdAJ4xW0QPf9p6Uqb1IFos90mpYJE4cACgjll0
|
||||
dhSNwpiSXJnP2UU/nGOpgGI=
|
||||
=7kgZ
|
||||
-----END PGP SIGNATURE-----
|
||||
|
@ -1 +1 @@
|
||||
620a8a2b38f5f2ad3db304b2bc88360285c174db
|
||||
acce10f77125b5ab05d10ec10aef68dffa4e826a
|
@ -1290,6 +1290,9 @@ int sqlite3_extended_result_codes(sqlite3*, int onoff);
|
||||
** For the purposes of this routine, an [INSERT] is considered to
|
||||
** be successful even if it is subsequently rolled back.
|
||||
**
|
||||
** This function is accessible to SQL statements via the
|
||||
** [last_insert_rowid() SQL function].
|
||||
**
|
||||
** Requirements:
|
||||
** [H12221] [H12223]
|
||||
**
|
||||
@ -1347,8 +1350,8 @@ sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);
|
||||
** However, the number returned does not include changes
|
||||
** caused by subtriggers since those have their own context.
|
||||
**
|
||||
** See also the [sqlite3_total_changes()] interface and the
|
||||
** [count_changes pragma].
|
||||
** See also the [sqlite3_total_changes()] interface, the
|
||||
** [count_changes pragma], and the [changes() SQL function].
|
||||
**
|
||||
** Requirements:
|
||||
** [H12241] [H12243]
|
||||
@ -1375,8 +1378,8 @@ int sqlite3_changes(sqlite3*);
|
||||
** completed (when the statement handle is passed to [sqlite3_reset()] or
|
||||
** [sqlite3_finalize()]).
|
||||
**
|
||||
** See also the [sqlite3_changes()] interface and the
|
||||
** [count_changes pragma].
|
||||
** See also the [sqlite3_changes()] interface, the
|
||||
** [count_changes pragma], and the [total_changes() SQL function].
|
||||
**
|
||||
** Requirements:
|
||||
** [H12261] [H12263]
|
||||
@ -4137,6 +4140,8 @@ int sqlite3_table_column_metadata(
|
||||
** {H12606} Extension loading must be enabled using
|
||||
** [sqlite3_enable_load_extension()] prior to calling this API,
|
||||
** otherwise an error will be returned.
|
||||
**
|
||||
** See also the [load_extension() SQL function].
|
||||
*/
|
||||
int sqlite3_load_extension(
|
||||
sqlite3 *db, /* Load the extension into this database connection */
|
||||
|
Loading…
x
Reference in New Issue
Block a user