]> git.ipfire.org Git - thirdparty/sqlite.git/commitdiff
Fix a typo in the documentation for the sqlite3_bind_XXX() APIs. (CVS 5292)
authordanielk1977 <danielk1977@noemail.net>
Tue, 24 Jun 2008 09:52:39 +0000 (09:52 +0000)
committerdanielk1977 <danielk1977@noemail.net>
Tue, 24 Jun 2008 09:52:39 +0000 (09:52 +0000)
FossilOrigin-Name: 839457f128c91a20aeae7ba570b4840792d41239

manifest
manifest.uuid
src/sqlite.h.in

index 02b29aa0a433d39896763f70af226ab08adfdda9..d04dec5a9a9bd239b1b284261afb10e9560cfae8 100644 (file)
--- a/manifest
+++ b/manifest
@@ -1,5 +1,5 @@
-C The\scompound-select\smerge\soptimization\sis\smostly\sworking\swith\sthis\scheck-in.\nBut\sthere\sare\sstill\sa\sfew\sproblems\sand\sso\sthe\soptimization\sis\sdisabled\sby\nand\s"#if\s0".\s\sThis\scheck-in\sis\sto\ssynchronize\swith\sthe\sother\schanges\shappening\nin\sparallel.\s(CVS\s5291)
-D 2008-06-24T00:32:35
+C Fix\sa\stypo\sin\sthe\sdocumentation\sfor\sthe\ssqlite3_bind_XXX()\sAPIs.\s(CVS\s5292)
+D 2008-06-24T09:52:39
 F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
 F Makefile.in ff6f90048555a0088f6a4b7406bed5e55a7c4eff
 F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
@@ -142,7 +142,7 @@ F src/printf.c 8b063da9dcde26b7c500a01444b718d86f21bc6e
 F src/random.c 5c754319d38abdd6acd74601ee0105504adc508a
 F src/select.c 1ebcd83ab51be47f31b2ec93daad844baf3b0788
 F src/shell.c 61fa61932ed52825720ebfd3f8381b8d550ef766
-F src/sqlite.h.in 6a80d00621a43271f01c77eb42bbf57e0f52051b
+F src/sqlite.h.in 449e75d6c0c00c8f9f0325e2d665bc66a1e6fb83
 F src/sqlite3ext.h f162a72daef5ebf8b211fe8c0ec96e85d22fbf9b
 F src/sqliteInt.h ec8e71249994b8a5b23b1a098a576c02e8548244
 F src/sqliteLimit.h f435e728c6b620ef7312814d660a81f9356eb5c8
@@ -592,7 +592,7 @@ F tool/speedtest16.c c8a9c793df96db7e4933f0852abb7a03d48f2e81
 F tool/speedtest2.tcl ee2149167303ba8e95af97873c575c3e0fab58ff
 F tool/speedtest8.c 1dbced29de5f59ba2ebf877edcadf171540374d1
 F tool/speedtest8inst1.c 293327bc76823f473684d589a8160bde1f52c14e
-P d92418ca502f5f58dc968668e11c42955a7b1e52
-R f88ace7929fab768ff8007a473e6b665
-U drh
-Z 9ed7972d77404d7a52eef908bd3410d8
+P e2ba324cbcac0ba35bbde50048677e085abb092b
+R 571f5a2a7c5833f8ac9443d6db08af85
+U danielk1977
+Z 3b8abaa5172f1cf18d7b1bca5e24fb2f
index 83bcd7c61ad712cb3885c1bbfe6e4dd65d91a36a..684f5fa59b62c2c5c0984be89c59e29dddbf52fc 100644 (file)
@@ -1 +1 @@
-e2ba324cbcac0ba35bbde50048677e085abb092b
\ No newline at end of file
+839457f128c91a20aeae7ba570b4840792d41239
\ No newline at end of file
index 874b6e889265d545363b0815f8a772fe10693cd7..3289386aa465ac3001847c6d358ad8f70a906a66 100644 (file)
@@ -30,7 +30,7 @@
 ** the version number) and changes its name to "sqlite3.h" as
 ** part of the build process.
 **
-** @(#) $Id: sqlite.h.in,v 1.353 2008/06/23 11:23:14 mihailim Exp $
+** @(#) $Id: sqlite.h.in,v 1.354 2008/06/24 09:52:39 danielk1977 Exp $
 */
 #ifndef _SQLITE3_H_
 #define _SQLITE3_H_
@@ -2777,7 +2777,7 @@ typedef struct sqlite3_context sqlite3_context;
 ** SQL parameter is used more than once, second and subsequent
 ** occurrences have the same index as the first occurrence.
 ** The index for named parameters can be looked up using the
-** [sqlite3_bind_parameter_name()] API if desired.  The index
+** [sqlite3_bind_parameter_index()] API if desired.  The index
 ** for "?NNN" parameters is the value of NNN.
 ** The NNN value must be between 1 and the compile-time
 ** parameter SQLITE_MAX_VARIABLE_NUMBER (default value: 999).