]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Minor tweaks to the interface documentation - adding hyperlinks.
authordrh <drh@noemail.net>
Tue, 15 Jun 2010 12:09:06 +0000 (12:09 +0000)
committerdrh <drh@noemail.net>
Tue, 15 Jun 2010 12:09:06 +0000 (12:09 +0000)
FossilOrigin-Name: 07b2fdd1cebbdbde5098a662eea65a0c9e8b5442

manifest
manifest.uuid
src/sqlite.h.in

index 86507672e34c8cbf7c48c5160eb516010c465dda..7f2c98eec3808927bf6cf70f6b457cc5246867ab 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,8 +1,8 @@
 -----BEGIN PGP SIGNED MESSAGE-----
 Hash: SHA1
 
-C Updates\sto\scomments\sand\stestcase()\smacros\sin\swal.c.
-D 2010-06-15T11:21:54
+C Minor\stweaks\sto\sthe\sinterface\sdocumentation\s-\sadding\shyperlinks.
+D 2010-06-15T12:09:06
 F Makefile.arm-wince-mingw32ce-gcc fcd5e9cd67fe88836360bb4f9ef4cb7f8e2fb5a0
 F Makefile.in a5cad1f8f3e021356bfcc6c77dc16f6f1952bbc3
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -173,7 +173,7 @@ F src/resolve.c ac5f1a713cd1ae77f08b83cc69581e11bf5ae6f9
 F src/rowset.c 69afa95a97c524ba6faf3805e717b5b7ae85a697
 F src/select.c c03d8a0565febcde8c6a12c5d77d065fddae889b
 F src/shell.c fd4ccdb37c3b68de0623eb938a649e0990710714
-F src/sqlite.h.in 2c084e205661f04b8e5a0367c87d9877e8aea268
+F src/sqlite.h.in 46c01e55cea31b91565ae41276c6310ee4032be8
 F src/sqlite3ext.h 69dfb8116af51b84a029cddb3b35062354270c89
 F src/sqliteInt.h 242987ebd2366ea36650a09cdab04a9163c62109
 F src/sqliteLimit.h 196e2f83c3b444c4548fc1874f52f84fdbda40f3
@@ -823,14 +823,14 @@ F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 2902c46588c40b55661e471d7a86e4dd71a18224
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
 F tool/vdbe-compress.tcl d70ea6d8a19e3571d7ab8c9b75cba86d1173ff0f
-P a2b9374fc6f0aba2d465d432e1124bd957aab548
-R b8eef250f5caed4a924f16a77af9cdc6
+P 4d90cc0bc07e791b2838fc384866bd5c2282f681
+R b20cc7941b129f7c6e9900cc5e97f6f7
 U drh
-Z 605208b22e0624f098357d577c5e0992
+Z da4c20a8b2ba3382af678dfac4118096
 -----BEGIN PGP SIGNATURE-----
 Version: GnuPG v1.4.6 (GNU/Linux)
 
-iD8DBQFMF2JVoxKgR168RlERAth9AJ9lwylEfM0j4jEYjOmIUA5/QL1cowCfcwM8
-3EixOPtKo5P3pdMwt8qjl2M=
-=IOSP
+iD8DBQFMF21loxKgR168RlERAuaCAJ4r5SsgyuvojtLe75yRe+q/0btQRACdH9jE
+q55l7VL0HSgtkFfs0xpMX3U=
+=Mg18
 -----END PGP SIGNATURE-----
index f276951a0cbb84000d52514336ff1311ca227d62..c84467c2f56a3d6a6ca5e21c3257b97613739518 100644 (file)
@@ -1 +1 @@
-4d90cc0bc07e791b2838fc384866bd5c2282f681
\ No newline at end of file
+07b2fdd1cebbdbde5098a662eea65a0c9e8b5442
\ No newline at end of file
index 512132626a70eb447e230f2e812e681f352957c5..28778f7fc0041d7dee6dcce8c262b3917eec7d05 100644 (file)
@@ -5814,21 +5814,21 @@ void sqlite3_log(int iErrCode, const char *zFormat, ...);
 ** is a copy of the third parameter passed to sqlite3_wal_hook() when
 ** registering the callback. ^The second is a copy of the database handle.
 ** ^The third parameter is the name of the database that was written to -
-** either "main" or the name of an ATTACHed database. ^The fourth parameter
+** either "main" or the name of an [ATTACH]-ed database. ^The fourth parameter
 ** is the number of pages currently in the write-ahead log file,
 ** including those that were just committed.
 **
-** The callback function should normally return SQLITE_OK.  ^If an error
+** The callback function should normally return [SQLITE_OK].  ^If an error
 ** code is returned, that error will propagate back up through the
 ** SQLite code base to cause the statement that provoked the callback
 ** to report an error, though the commit will have still occurred. If the
-** callback returns SQLITE_ROW or SQLITE_DONE, or if it returns a value
+** callback returns [SQLITE_ROW] or [SQLITE_DONE], or if it returns a value
 ** that does not correspond to any valid SQLite error code, the results
 ** are undefined.
 **
 ** A single database handle may have at most a single write-ahead log callback 
 ** registered at one time. ^Calling [sqlite3_wal_hook()] replaces any
-** previously registered write-ahead log callback. Note that the
+** previously registered write-ahead log callback. ^Note that the
 ** [sqlite3_wal_autocheckpoint()] interface and the
 ** [wal_autocheckpoint pragma] both invoke [sqlite3_wal_hook()] and will
 ** those overwrite any prior [sqlite3_wal_hook()] settings.