-C Allow\smultiple\soccurrances\sof\s%include\sin\slemon\sinput\sfiles.\nTicket\s#3001.\s(CVS\s5053)
-D 2008-04-27T22:19:45
+C Fix\sthe\sdocumentation\sto\sagree\swith\slong-standing\sbehavior\sfor\sthe\nsqlite3_bind_parameter_name()\sinterface\son\san\s?NNN\sparameter.\nTicket\s#2975.\s(CVS\s5054)
+D 2008-04-27T22:29:02
F Makefile.arm-wince-mingw32ce-gcc ac5f7b2cef0cd850d6f755ba6ee4ab961b1fadf7
F Makefile.in 25b3282a4ac39388632c2fb0e044ff494d490952
F Makefile.linux-gcc d53183f4aa6a9192d249731c90dbdffbd2c68654
F src/select.c b02ee16591f0194739e7deb12099d3e98e60b7f3
F src/server.c 087b92a39d883e3fa113cae259d64e4c7438bc96
F src/shell.c be22ec05c8c4a43a95a6ad3b8068542200451e07
-F src/sqlite.h.in 1064c85778f68f501ae91b46cd997084a31e0829
+F src/sqlite.h.in 4fcaad008e3b468d7202e749d5a8b81e59afcf5a
F src/sqlite3ext.h faacd0e6a81aabee0861c6d7883c9172e74ef5b3
F src/sqliteInt.h 360bd20e5a16e0624db7e2d55d632fbad6f10e19
F src/sqliteLimit.h f435e728c6b620ef7312814d660a81f9356eb5c8
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P 20ed749266d099eb35f40ca479db8baa75186b60
-R 9d5f4dcb5bf15e107c27eb9427f5ffc1
+P f22fa11bde0b77cfc5ff438f2ec6ab95dc87c291
+R acdbb140dfdaf108d3e2b2a2ba9fe2d2
U drh
-Z e874612f1bcb163492c64e81d81fe5cd
+Z 54ec6a4f4a59bea489b30c72b705b611
-f22fa11bde0b77cfc5ff438f2ec6ab95dc87c291
\ No newline at end of file
+df9991d5bbc6d90087f022c55b070c11dc510077
\ No newline at end of file
** the version number) and changes its name to "sqlite3.h" as
** part of the build process.
**
-** @(#) $Id: sqlite.h.in,v 1.308 2008/04/24 08:56:54 danielk1977 Exp $
+** @(#) $Id: sqlite.h.in,v 1.309 2008/04/27 22:29:02 drh Exp $
*/
#ifndef _SQLITE3_H_
#define _SQLITE3_H_
**
** This routine returns a pointer to the name of the n-th
** SQL parameter in a [prepared statement].
-** SQL parameters of the form ":AAA" or "@AAA" or "$AAA" have a name
-** which is the string ":AAA" or "@AAA" or "$VVV".
-** In other words, the initial ":" or "$" or "@"
+** SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA"
+** have a name which is the string "?NNN" or ":AAA" or "@AAA" or "$AAA"
+** respectively.
+** In other words, the initial ":" or "$" or "@" or "?"
** is included as part of the name.
-** Parameters of the form "?" or "?NNN" have no name.
+** Parameters of the form "?" without a following integer have no name.
**
** The first host parameter has an index of 1, not 0.
**
** a UTF-8 rendering of the name of the SQL parameter in
** [prepared statement] S having index N, or
** NULL if there is no SQL parameter with index N or if the
-** parameter with index N is an anonymous parameter "?" or
-** a numbered parameter "?NNN".
+** parameter with index N is an anonymous parameter "?".
*/
const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int);