]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Corrections to the documentation on sqlite3_exec(). Ticket #2161. (CVS 3586)
authordrh <drh@noemail.net>
Wed, 10 Jan 2007 12:57:29 +0000 (12:57 +0000)
committerdrh <drh@noemail.net>
Wed, 10 Jan 2007 12:57:29 +0000 (12:57 +0000)
FossilOrigin-Name: afd33f62ecf9f14255f5593ea87636b9deab7b92

manifest
manifest.uuid
src/sqlite.h.in
www/capi3ref.tcl

index c3bd57f52665ba78c7c946919beb44aa8cc1c118..fe003af7ff881efaa0325f390a12e4573d9b1854 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C Corrections\sto\sthe\sdocumentation\sfor\ssqlite3_busy_handler().\s\sTicket\s#2160.\s(CVS\s3585)
-D 2007-01-10T12:54:51
+C Corrections\sto\sthe\sdocumentation\son\ssqlite3_exec().\s\sTicket\s#2161.\s(CVS\s3586)
+D 2007-01-10T12:57:29
 F Makefile.in 7fa74bf4359aa899da5586e394d17735f221315f
 F Makefile.linux-gcc 2d8574d1ba75f129aba2019f0b959db380a90935
 F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
@@ -95,7 +95,7 @@ F src/random.c 6119474a6f6917f708c1dee25b9a8e519a620e88
 F src/select.c 52f09127b53697b1a95835a9b0db9309cca8079f
 F src/server.c 087b92a39d883e3fa113cae259d64e4c7438bc96
 F src/shell.c d13ca007cd18192c07a668aeddcdd6a9fe639be9
-F src/sqlite.h.in e30302785dbc3bc267332c66aff3fc35094df82e
+F src/sqlite.h.in d264fe6241fee33491b1ab90885c2f0c0d2c7e8f
 F src/sqlite3ext.h 011c75fd6459a61454514af07c7a4f1f5c767f27
 F src/sqliteInt.h 90dad3c0ba7a5151c48361748ccdada9ff2eff78
 F src/table.c 6d0da66dde26ee75614ed8f584a1996467088d06
@@ -380,7 +380,7 @@ F www/audit.tcl 90e09d580f79c7efec0c7d6f447b7ec5c2dce5c0
 F www/autoinc.tcl b357f5ba954b046ee35392ce0f884a2fcfcdea06
 F www/c_interface.tcl b51b08591554c16a0c3ef718364a508ac25abc7e
 F www/capi3.tcl 7a7cc225fe02eb7ab861a6019b08baa0014409e1
-F www/capi3ref.tcl 05302a68539d59735db218b7a85286ed54ecb882
+F www/capi3ref.tcl 9adb2d2313c3c5e9c6d6240c1d8f3d11dd533c59
 F www/changes.tcl dd6aaf7839ac20b3c5fe69533755bc64d8e43952
 F www/common.tcl 14d121c28532ad20c3e349caa4db708b0b822083
 F www/compile.tcl 276546d7eb445add5a867193bbd80f6919a6b084
@@ -424,7 +424,7 @@ F www/tclsqlite.tcl bb0d1357328a42b1993d78573e587c6dcbc964b9
 F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
 F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
 F www/whentouse.tcl 97e2b5cd296f7d8057e11f44427dea8a4c2db513
-P 686beffa6956654fc43a2e3f1ea2896b86533774
-R 37b95f7cb770c1cc82421906a2f6ab32
+P 9614c0f99f27e8c6576a1a3ec5573b9bc414e8a8
+R 4f9f6e33598d472df3b2dcfbc0c60e47
 U drh
-Z e0e0191c8f079c40c55e12d7cf52eaf1
+Z 263503a888beed89b3909f4e69b9de71
index 944a647181a8103c4e5f7fb62742fccc8bb681fd..fc288ee9eaba7167212a20640e7ffc017e97d9ab 100644 (file)
@@ -1 +1 @@
-9614c0f99f27e8c6576a1a3ec5573b9bc414e8a8
\ No newline at end of file
+afd33f62ecf9f14255f5593ea87636b9deab7b92
\ No newline at end of file
index 7b08850a70e24d3fb4757a63522ed2c02d46da96..568141f09ac5d052959bb3f176406384b629d033 100644 (file)
@@ -12,7 +12,7 @@
 ** This header file defines the interface that the SQLite library
 ** presents to client programs.
 **
-** @(#) $Id: sqlite.h.in,v 1.196 2007/01/10 12:54:51 drh Exp $
+** @(#) $Id: sqlite.h.in,v 1.197 2007/01/10 12:57:29 drh Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -125,7 +125,7 @@ typedef int (*sqlite3_callback)(void*,int,char**, char**);
 ** value then the query is aborted, all subsequent SQL statements
 ** are skipped and the sqlite3_exec() function returns the SQLITE_ABORT.
 **
-** The 4th parameter is an arbitrary pointer that is passed
+** The 1st parameter is an arbitrary pointer that is passed
 ** to the callback function as its first parameter.
 **
 ** The 2nd parameter to the callback function is the number of
index 64fea9c196c41c8675d95d6a64613bee6a0dbb68..9e0ea7eef8fb439ae151cf441f9ed48525e25329 100644 (file)
@@ -1,4 +1,4 @@
-set rcsid {$Id: capi3ref.tcl,v 1.50 2007/01/10 12:54:52 drh Exp $}
+set rcsid {$Id: capi3ref.tcl,v 1.51 2007/01/10 12:57:29 drh Exp $}
 source common.tcl
 header {C/C++ Interface For SQLite Version 3}
 puts {
@@ -861,7 +861,7 @@ int sqlite3_exec(
  value then the query is aborted, all subsequent SQL statements
  are skipped and the sqlite3_exec() function returns the SQLITE_ABORT.
 
- The 4th argument is an arbitrary pointer that is passed
+ The 1st argument is an arbitrary pointer that is passed
  to the callback function as its first argument.
 
  The 2nd argument to the callback function is the number of