From a09883f3771352a84a44d30035fce12bfd232ae7 Mon Sep 17 00:00:00 2001 From: drh Date: Wed, 10 Jan 2007 12:57:29 +0000 Subject: [PATCH] Corrections to the documentation on sqlite3_exec(). Ticket #2161. (CVS 3586) FossilOrigin-Name: afd33f62ecf9f14255f5593ea87636b9deab7b92 --- manifest | 14 +++++++------- manifest.uuid | 2 +- src/sqlite.h.in | 4 ++-- www/capi3ref.tcl | 4 ++-- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/manifest b/manifest index c3bd57f526..fe003af7ff 100644 --- 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 diff --git a/manifest.uuid b/manifest.uuid index 944a647181..fc288ee9ea 100644 --- a/manifest.uuid +++ b/manifest.uuid @@ -1 +1 @@ -9614c0f99f27e8c6576a1a3ec5573b9bc414e8a8 \ No newline at end of file +afd33f62ecf9f14255f5593ea87636b9deab7b92 \ No newline at end of file diff --git a/src/sqlite.h.in b/src/sqlite.h.in index 7b08850a70..568141f09a 100644 --- a/src/sqlite.h.in +++ b/src/sqlite.h.in @@ -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 diff --git a/www/capi3ref.tcl b/www/capi3ref.tcl index 64fea9c196..9e0ea7eef8 100644 --- a/www/capi3ref.tcl +++ b/www/capi3ref.tcl @@ -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