-C Add\stext\sto\sthe\sload_extension\sSQL\sfunction\sdocumentation\sthat\nexplains\slimitations\sin\sthe\suse\sof\sthat\sfunction.\s\sTicket\s#2672.\s(CVS\s4446)
-D 2007-10-01T13:45:04
+C Fix\scomment\stypos\sin\ssqlite3.h.\s\sTicket\s#2666.\s(CVS\s4447)
+D 2007-10-01T13:50:32
F Makefile.in cbfb898945536a8f9ea8b897e1586dd1fdbcc5db
F Makefile.linux-gcc 65241babba6faf1152bf86574477baab19190499
F README 9c4e2d6706bdcc3efdd773ce752a8cdab4f90028
F src/select.c 4706a6115da1bdc09a2be5991168a6cc2c0df267
F src/server.c 087b92a39d883e3fa113cae259d64e4c7438bc96
F src/shell.c 82089379833e361ba8a2ae65316a2173785300c0
-F src/sqlite.h.in 38c150bfb76c1792a93c9897ee774b5a20f0f3da
+F src/sqlite.h.in 60d1a884f49304787b07864ceba31e6df93a5a7c
F src/sqlite3ext.h a93f59cdee3638dc0c9c086f80df743a4e68c3cb
F src/sqliteInt.h ab7d3169cbfa911335fd94a61f22f052a9f5adeb
F src/sqliteLimit.h 1bcbbdfa856f8b71b561abb31edb864b0eca1d12
F www/vdbe.tcl 87a31ace769f20d3627a64fa1fade7fed47b90d0
F www/version3.tcl 890248cf7b70e60c383b0e84d77d5132b3ead42b
F www/whentouse.tcl fc46eae081251c3c181bd79c5faef8195d7991a5
-P 005d780de6e9e377ee296ff576e58cf1b512f245
-R e5c5bdab974bf15dec956bf9d58e16f9
+P b2befc84c360dde42c6dd10cbcc9572e37852438
+R 61b9261456fdf23a3bea36b5be3aa692
U drh
-Z ce44966a19ab56de0eaeaf617f455506
+Z c11ca39a98011f94ac40ccbbcd3220a3
** the version number) and changes its name to "sqlite3.h" as
** part of the build process.
**
-** @(#) $Id: sqlite.h.in,v 1.263 2007/09/21 12:43:17 drh Exp $
+** @(#) $Id: sqlite.h.in,v 1.264 2007/10/01 13:50:32 drh Exp $
*/
#ifndef _SQLITE3_H_
#define _SQLITE3_H_
** most recent API call succeeded, the return value from sqlite3_errcode()
** is undefined.
**
-** The sqlite3_errmsg() and sqlite3_errmsg16() return English-langauge
+** The sqlite3_errmsg() and sqlite3_errmsg16() return English-language
** text that describes the error, as either UTF8 or UTF16 respectively.
** Memory to hold the error message string is managed internally. The
** string may be overwritten or deallocated by subsequent calls to SQLite
char const **pzCollSeq, /* OUTPUT: Collation sequence name */
int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */
int *pPrimaryKey, /* OUTPUT: True if column part of PK */
- int *pAutoinc /* OUTPUT: True if colums is auto-increment */
+ int *pAutoinc /* OUTPUT: True if column is auto-increment */
);
/*
** is usable) and false if it cannot.
**
** The optimizer automatically inverts terms of the form "expr OP column"
-** and makes other simplificatinos to the WHERE clause in an attempt to
+** and makes other simplifications to the WHERE clause in an attempt to
** get as many WHERE clause terms into the form shown above as possible.
** The aConstraint[] array only reports WHERE clause terms in the correct
** form that refer to the particular virtual table being queried.
/*
** Every module implementation uses a subclass of the following structure
** to describe a particular instance of the module. Each subclass will
-** be taylored to the specific needs of the module implementation. The
+** be tailored to the specific needs of the module implementation. The
** purpose of this superclass is to define certain fields that are common
** to all module implementations.
**
** to be experimental. The interface might change in incompatible ways.
** If this is a problem for you, do not use the interface at this time.
**
-** When the virtual-table mechanism stablizes, we will declare the
+** When the virtual-table mechanism stabilizes, we will declare the
** interface fixed, support it indefinitely, and remove this comment.
**
****** EXPERIMENTAL - subject to change without notice **************