blob: 26c7adeef5e9f13cef2ee4a34b94d1d7280c2667 [file] [log] [blame]
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001/*
2** 2001 September 15
3**
4** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
7** May you do good and not evil.
8** May you find forgiveness for yourself and forgive others.
9** May you share freely, never taking more than you give.
10**
11*************************************************************************
12** This header file defines the interface that the SQLite library
13** presents to client programs. If a C-function, structure, datatype,
14** or constant definition does not appear in this file, then it is
15** not a published API of SQLite, is subject to change without
16** notice, and should not be referenced by programs that use SQLite.
17**
18** Some of the definitions that are in this file are marked as
19** "experimental". Experimental interfaces are normally new
Vasu Noria4356a02010-01-20 15:10:57 -080020** features recently added to SQLite. We do not anticipate changes
21** to experimental interfaces but reserve the right to make minor changes
22** if experience from use "in the wild" suggest such changes are prudent.
The Android Open Source Project7790ef52009-03-03 19:30:40 -080023**
24** The official C-language API documentation for SQLite is derived
25** from comments in this file. This file is the authoritative source
26** on how SQLite interfaces are suppose to operate.
27**
28** The name of this file under configuration management is "sqlite.h.in".
29** The makefile makes some minor changes to this file (such as inserting
30** the version number) and changes its name to "sqlite3.h" as
31** part of the build process.
The Android Open Source Project7790ef52009-03-03 19:30:40 -080032*/
33#ifndef _SQLITE3_H_
34#define _SQLITE3_H_
35#include <stdarg.h> /* Needed for the definition of va_list */
36
37/*
38** Make sure we can call this stuff from C++.
39*/
40#ifdef __cplusplus
41extern "C" {
42#endif
43
44
45/*
46** Add the ability to override 'extern'
47*/
48#ifndef SQLITE_EXTERN
49# define SQLITE_EXTERN extern
50#endif
51
Vasu Noria4356a02010-01-20 15:10:57 -080052#ifndef SQLITE_API
53# define SQLITE_API
54#endif
55
56
The Android Open Source Project7790ef52009-03-03 19:30:40 -080057/*
Vasu Noria4356a02010-01-20 15:10:57 -080058** These no-op macros are used in front of interfaces to mark those
59** interfaces as either deprecated or experimental. New applications
60** should not use deprecated interfaces - they are support for backwards
61** compatibility only. Application writers should be aware that
62** experimental interfaces are subject to change in point releases.
63**
64** These macros used to resolve to various kinds of compiler magic that
65** would generate warning messages when they were used. But that
66** compiler magic ended up generating such a flurry of bug reports
67** that we have taken it all out and gone back to using simple
68** noop macros.
69*/
70#define SQLITE_DEPRECATED
71#define SQLITE_EXPERIMENTAL
72
73/*
74** Ensure these symbols were not defined by some previous header file.
The Android Open Source Project7790ef52009-03-03 19:30:40 -080075*/
76#ifdef SQLITE_VERSION
77# undef SQLITE_VERSION
78#endif
79#ifdef SQLITE_VERSION_NUMBER
80# undef SQLITE_VERSION_NUMBER
81#endif
82
83/*
Vasu Noria4356a02010-01-20 15:10:57 -080084** CAPI3REF: Compile-Time Library Version Numbers
The Android Open Source Project7790ef52009-03-03 19:30:40 -080085**
Vasu Noria4356a02010-01-20 15:10:57 -080086** ^(The [SQLITE_VERSION] C preprocessor macro in the sqlite3.h header
87** evaluates to a string literal that is the SQLite version in the
88** format "X.Y.Z" where X is the major version number (always 3 for
89** SQLite3) and Y is the minor version number and Z is the release number.)^
90** ^(The [SQLITE_VERSION_NUMBER] C preprocessor macro resolves to an integer
91** with the value (X*1000000 + Y*1000 + Z) where X, Y, and Z are the same
92** numbers used in [SQLITE_VERSION].)^
93** The SQLITE_VERSION_NUMBER for any given release of SQLite will also
94** be larger than the release from which it is derived. Either Y will
95** be held constant and Z will be incremented or else Y will be incremented
96** and Z will be reset to zero.
The Android Open Source Project7790ef52009-03-03 19:30:40 -080097**
Vasu Noria4356a02010-01-20 15:10:57 -080098** Since version 3.6.18, SQLite source code has been stored in the
99** <a href="http://www.fossil-scm.org/">Fossil configuration management
100** system</a>. ^The SQLITE_SOURCE_ID macro evalutes to
101** a string which identifies a particular check-in of SQLite
102** within its configuration management system. ^The SQLITE_SOURCE_ID
103** string contains the date and time of the check-in (UTC) and an SHA1
104** hash of the entire source tree.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800105**
Vasu Noria4356a02010-01-20 15:10:57 -0800106** See also: [sqlite3_libversion()],
107** [sqlite3_libversion_number()], [sqlite3_sourceid()],
108** [sqlite_version()] and [sqlite_source_id()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800109*/
Vasu Noria4356a02010-01-20 15:10:57 -0800110#define SQLITE_VERSION "3.6.22"
111#define SQLITE_VERSION_NUMBER 3006022
Vasu Nori9d9edcf2010-03-01 15:28:13 -0800112#define SQLITE_SOURCE_ID "2010-01-05 15:30:36 28d0d7710761114a44a1a3a425a6883c661f06e7"
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800113
114/*
Vasu Noria4356a02010-01-20 15:10:57 -0800115** CAPI3REF: Run-Time Library Version Numbers
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800116** KEYWORDS: sqlite3_version
117**
Vasu Noria4356a02010-01-20 15:10:57 -0800118** These interfaces provide the same information as the [SQLITE_VERSION],
119** [SQLITE_VERSION_NUMBER], and [SQLITE_SOURCE_ID] C preprocessor macros
120** but are associated with the library instead of the header file. ^(Cautious
121** programmers might include assert() statements in their application to
122** verify that values returned by these interfaces match the macros in
123** the header, and thus insure that the application is
124** compiled with matching library and header files.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800125**
Vasu Noria4356a02010-01-20 15:10:57 -0800126** <blockquote><pre>
127** assert( sqlite3_libversion_number()==SQLITE_VERSION_NUMBER );
128** assert( strcmp(sqlite3_sourceid(),SQLITE_SOURCE_ID)==0 );
129** assert( strcmp(sqlite3_libversion(),SQLITE_VERSION)==0 );
130** </pre></blockquote>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800131**
Vasu Noria4356a02010-01-20 15:10:57 -0800132** ^The sqlite3_version[] string constant contains the text of [SQLITE_VERSION]
133** macro. ^The sqlite3_libversion() function returns a pointer to the
134** to the sqlite3_version[] string constant. The sqlite3_libversion()
135** function is provided for use in DLLs since DLL users usually do not have
136** direct access to string constants within the DLL. ^The
137** sqlite3_libversion_number() function returns an integer equal to
138** [SQLITE_VERSION_NUMBER]. ^The sqlite3_sourceid() function a pointer
139** to a string constant whose value is the same as the [SQLITE_SOURCE_ID]
140** C preprocessor macro.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800141**
Vasu Noria4356a02010-01-20 15:10:57 -0800142** See also: [sqlite_version()] and [sqlite_source_id()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800143*/
Vasu Noria4356a02010-01-20 15:10:57 -0800144SQLITE_API SQLITE_EXTERN const char sqlite3_version[];
145SQLITE_API const char *sqlite3_libversion(void);
146SQLITE_API const char *sqlite3_sourceid(void);
147SQLITE_API int sqlite3_libversion_number(void);
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800148
149/*
Vasu Noria4356a02010-01-20 15:10:57 -0800150** CAPI3REF: Test To See If The Library Is Threadsafe
151**
152** ^The sqlite3_threadsafe() function returns zero if and only if
153** SQLite was compiled mutexing code omitted due to the
154** [SQLITE_THREADSAFE] compile-time option being set to 0.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800155**
156** SQLite can be compiled with or without mutexes. When
Vasu Noria4356a02010-01-20 15:10:57 -0800157** the [SQLITE_THREADSAFE] C preprocessor macro is 1 or 2, mutexes
158** are enabled and SQLite is threadsafe. When the
159** [SQLITE_THREADSAFE] macro is 0,
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800160** the mutexes are omitted. Without the mutexes, it is not safe
Vasu Noria4356a02010-01-20 15:10:57 -0800161** to use SQLite concurrently from more than one thread.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800162**
Vasu Noria4356a02010-01-20 15:10:57 -0800163** Enabling mutexes incurs a measurable performance penalty.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800164** So if speed is of utmost importance, it makes sense to disable
165** the mutexes. But for maximum safety, mutexes should be enabled.
Vasu Noria4356a02010-01-20 15:10:57 -0800166** ^The default behavior is for mutexes to be enabled.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800167**
Vasu Noria4356a02010-01-20 15:10:57 -0800168** This interface can be used by an application to make sure that the
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800169** version of SQLite that it is linking against was compiled with
Vasu Noria4356a02010-01-20 15:10:57 -0800170** the desired setting of the [SQLITE_THREADSAFE] macro.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800171**
Vasu Noria4356a02010-01-20 15:10:57 -0800172** This interface only reports on the compile-time mutex setting
173** of the [SQLITE_THREADSAFE] flag. If SQLite is compiled with
174** SQLITE_THREADSAFE=1 or =2 then mutexes are enabled by default but
175** can be fully or partially disabled using a call to [sqlite3_config()]
176** with the verbs [SQLITE_CONFIG_SINGLETHREAD], [SQLITE_CONFIG_MULTITHREAD],
177** or [SQLITE_CONFIG_MUTEX]. ^(The return value of the
178** sqlite3_threadsafe() function shows only the compile-time setting of
179** thread safety, not any run-time changes to that setting made by
180** sqlite3_config(). In other words, the return value from sqlite3_threadsafe()
181** is unchanged by calls to sqlite3_config().)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800182**
Vasu Noria4356a02010-01-20 15:10:57 -0800183** See the [threading mode] documentation for additional information.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800184*/
Vasu Noria4356a02010-01-20 15:10:57 -0800185SQLITE_API int sqlite3_threadsafe(void);
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800186
187/*
Vasu Noria4356a02010-01-20 15:10:57 -0800188** CAPI3REF: Database Connection Handle
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800189** KEYWORDS: {database connection} {database connections}
190**
Vasu Noria4356a02010-01-20 15:10:57 -0800191** Each open SQLite database is represented by a pointer to an instance of
192** the opaque structure named "sqlite3". It is useful to think of an sqlite3
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800193** pointer as an object. The [sqlite3_open()], [sqlite3_open16()], and
Vasu Noria4356a02010-01-20 15:10:57 -0800194** [sqlite3_open_v2()] interfaces are its constructors, and [sqlite3_close()]
195** is its destructor. There are many other interfaces (such as
196** [sqlite3_prepare_v2()], [sqlite3_create_function()], and
197** [sqlite3_busy_timeout()] to name but three) that are methods on an
198** sqlite3 object.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800199*/
200typedef struct sqlite3 sqlite3;
201
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800202/*
Vasu Noria4356a02010-01-20 15:10:57 -0800203** CAPI3REF: 64-Bit Integer Types
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800204** KEYWORDS: sqlite_int64 sqlite_uint64
205**
206** Because there is no cross-platform way to specify 64-bit integer types
207** SQLite includes typedefs for 64-bit signed and unsigned integers.
208**
Vasu Noria4356a02010-01-20 15:10:57 -0800209** The sqlite3_int64 and sqlite3_uint64 are the preferred type definitions.
210** The sqlite_int64 and sqlite_uint64 types are supported for backwards
211** compatibility only.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800212**
Vasu Noria4356a02010-01-20 15:10:57 -0800213** ^The sqlite3_int64 and sqlite_int64 types can store integer values
214** between -9223372036854775808 and +9223372036854775807 inclusive. ^The
215** sqlite3_uint64 and sqlite_uint64 types can store integer values
216** between 0 and +18446744073709551615 inclusive.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800217*/
218#ifdef SQLITE_INT64_TYPE
219 typedef SQLITE_INT64_TYPE sqlite_int64;
220 typedef unsigned SQLITE_INT64_TYPE sqlite_uint64;
221#elif defined(_MSC_VER) || defined(__BORLANDC__)
222 typedef __int64 sqlite_int64;
223 typedef unsigned __int64 sqlite_uint64;
224#else
225 typedef long long int sqlite_int64;
226 typedef unsigned long long int sqlite_uint64;
227#endif
228typedef sqlite_int64 sqlite3_int64;
229typedef sqlite_uint64 sqlite3_uint64;
230
231/*
232** If compiling for a processor that lacks floating point support,
Vasu Noria4356a02010-01-20 15:10:57 -0800233** substitute integer for floating-point.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800234*/
235#ifdef SQLITE_OMIT_FLOATING_POINT
236# define double sqlite3_int64
237#endif
238
239/*
Vasu Noria4356a02010-01-20 15:10:57 -0800240** CAPI3REF: Closing A Database Connection
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800241**
Vasu Noria4356a02010-01-20 15:10:57 -0800242** ^The sqlite3_close() routine is the destructor for the [sqlite3] object.
243** ^Calls to sqlite3_close() return SQLITE_OK if the [sqlite3] object is
244** successfullly destroyed and all associated resources are deallocated.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800245**
Vasu Noria4356a02010-01-20 15:10:57 -0800246** Applications must [sqlite3_finalize | finalize] all [prepared statements]
247** and [sqlite3_blob_close | close] all [BLOB handles] associated with
248** the [sqlite3] object prior to attempting to close the object. ^If
249** sqlite3_close() is called on a [database connection] that still has
250** outstanding [prepared statements] or [BLOB handles], then it returns
251** SQLITE_BUSY.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800252**
Vasu Noria4356a02010-01-20 15:10:57 -0800253** ^If [sqlite3_close()] is invoked while a transaction is open,
254** the transaction is automatically rolled back.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800255**
Vasu Noria4356a02010-01-20 15:10:57 -0800256** The C parameter to [sqlite3_close(C)] must be either a NULL
257** pointer or an [sqlite3] object pointer obtained
258** from [sqlite3_open()], [sqlite3_open16()], or
259** [sqlite3_open_v2()], and not previously closed.
260** ^Calling sqlite3_close() with a NULL pointer argument is a
261** harmless no-op.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800262*/
Vasu Noria4356a02010-01-20 15:10:57 -0800263SQLITE_API int sqlite3_close(sqlite3 *);
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800264
265/*
266** The type for a callback function.
267** This is legacy and deprecated. It is included for historical
268** compatibility and is not documented.
269*/
270typedef int (*sqlite3_callback)(void*,int,char**, char**);
271
272/*
Vasu Noria4356a02010-01-20 15:10:57 -0800273** CAPI3REF: One-Step Query Execution Interface
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800274**
Vasu Noria4356a02010-01-20 15:10:57 -0800275** The sqlite3_exec() interface is a convenience wrapper around
276** [sqlite3_prepare_v2()], [sqlite3_step()], and [sqlite3_finalize()],
277** that allows an application to run multiple statements of SQL
278** without having to use a lot of C code.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800279**
Vasu Noria4356a02010-01-20 15:10:57 -0800280** ^The sqlite3_exec() interface runs zero or more UTF-8 encoded,
281** semicolon-separate SQL statements passed into its 2nd argument,
282** in the context of the [database connection] passed in as its 1st
283** argument. ^If the callback function of the 3rd argument to
284** sqlite3_exec() is not NULL, then it is invoked for each result row
285** coming out of the evaluated SQL statements. ^The 4th argument to
286** to sqlite3_exec() is relayed through to the 1st argument of each
287** callback invocation. ^If the callback pointer to sqlite3_exec()
288** is NULL, then no callback is ever invoked and result rows are
289** ignored.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800290**
Vasu Noria4356a02010-01-20 15:10:57 -0800291** ^If an error occurs while evaluating the SQL statements passed into
292** sqlite3_exec(), then execution of the current statement stops and
293** subsequent statements are skipped. ^If the 5th parameter to sqlite3_exec()
294** is not NULL then any error message is written into memory obtained
295** from [sqlite3_malloc()] and passed back through the 5th parameter.
296** To avoid memory leaks, the application should invoke [sqlite3_free()]
297** on error message strings returned through the 5th parameter of
298** of sqlite3_exec() after the error message string is no longer needed.
299** ^If the 5th parameter to sqlite3_exec() is not NULL and no errors
300** occur, then sqlite3_exec() sets the pointer in its 5th parameter to
301** NULL before returning.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800302**
Vasu Noria4356a02010-01-20 15:10:57 -0800303** ^If an sqlite3_exec() callback returns non-zero, the sqlite3_exec()
304** routine returns SQLITE_ABORT without invoking the callback again and
305** without running any subsequent SQL statements.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800306**
Vasu Noria4356a02010-01-20 15:10:57 -0800307** ^The 2nd argument to the sqlite3_exec() callback function is the
308** number of columns in the result. ^The 3rd argument to the sqlite3_exec()
309** callback is an array of pointers to strings obtained as if from
310** [sqlite3_column_text()], one for each column. ^If an element of a
311** result row is NULL then the corresponding string pointer for the
312** sqlite3_exec() callback is a NULL pointer. ^The 4th argument to the
313** sqlite3_exec() callback is an array of pointers to strings where each
314** entry represents the name of corresponding result column as obtained
315** from [sqlite3_column_name()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800316**
Vasu Noria4356a02010-01-20 15:10:57 -0800317** ^If the 2nd parameter to sqlite3_exec() is a NULL pointer, a pointer
318** to an empty string, or a pointer that contains only whitespace and/or
319** SQL comments, then no SQL statements are evaluated and the database
320** is not changed.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800321**
Vasu Noria4356a02010-01-20 15:10:57 -0800322** Restrictions:
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800323**
Vasu Noria4356a02010-01-20 15:10:57 -0800324** <ul>
325** <li> The application must insure that the 1st parameter to sqlite3_exec()
326** is a valid and open [database connection].
327** <li> The application must not close [database connection] specified by
328** the 1st parameter to sqlite3_exec() while sqlite3_exec() is running.
329** <li> The application must not modify the SQL statement text passed into
330** the 2nd parameter of sqlite3_exec() while sqlite3_exec() is running.
331** </ul>
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800332*/
Vasu Noria4356a02010-01-20 15:10:57 -0800333SQLITE_API int sqlite3_exec(
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800334 sqlite3*, /* An open database */
Vasu Noria4356a02010-01-20 15:10:57 -0800335 const char *sql, /* SQL to be evaluated */
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800336 int (*callback)(void*,int,char**,char**), /* Callback function */
337 void *, /* 1st argument to callback */
338 char **errmsg /* Error msg written here */
339);
340
341/*
Vasu Noria4356a02010-01-20 15:10:57 -0800342** CAPI3REF: Result Codes
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800343** KEYWORDS: SQLITE_OK {error code} {error codes}
Vasu Noria4356a02010-01-20 15:10:57 -0800344** KEYWORDS: {result code} {result codes}
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800345**
346** Many SQLite functions return an integer result code from the set shown
347** here in order to indicates success or failure.
348**
Vasu Noria4356a02010-01-20 15:10:57 -0800349** New error codes may be added in future versions of SQLite.
350**
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800351** See also: [SQLITE_IOERR_READ | extended result codes]
352*/
353#define SQLITE_OK 0 /* Successful result */
354/* beginning-of-error-codes */
355#define SQLITE_ERROR 1 /* SQL error or missing database */
356#define SQLITE_INTERNAL 2 /* Internal logic error in SQLite */
357#define SQLITE_PERM 3 /* Access permission denied */
358#define SQLITE_ABORT 4 /* Callback routine requested an abort */
359#define SQLITE_BUSY 5 /* The database file is locked */
360#define SQLITE_LOCKED 6 /* A table in the database is locked */
361#define SQLITE_NOMEM 7 /* A malloc() failed */
362#define SQLITE_READONLY 8 /* Attempt to write a readonly database */
363#define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/
364#define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */
365#define SQLITE_CORRUPT 11 /* The database disk image is malformed */
366#define SQLITE_NOTFOUND 12 /* NOT USED. Table or record not found */
367#define SQLITE_FULL 13 /* Insertion failed because database is full */
368#define SQLITE_CANTOPEN 14 /* Unable to open the database file */
369#define SQLITE_PROTOCOL 15 /* NOT USED. Database lock protocol error */
370#define SQLITE_EMPTY 16 /* Database is empty */
371#define SQLITE_SCHEMA 17 /* The database schema changed */
372#define SQLITE_TOOBIG 18 /* String or BLOB exceeds size limit */
373#define SQLITE_CONSTRAINT 19 /* Abort due to constraint violation */
374#define SQLITE_MISMATCH 20 /* Data type mismatch */
375#define SQLITE_MISUSE 21 /* Library used incorrectly */
376#define SQLITE_NOLFS 22 /* Uses OS features not supported on host */
377#define SQLITE_AUTH 23 /* Authorization denied */
378#define SQLITE_FORMAT 24 /* Auxiliary database format error */
379#define SQLITE_RANGE 25 /* 2nd parameter to sqlite3_bind out of range */
380#define SQLITE_NOTADB 26 /* File opened that is not a database file */
381#define SQLITE_ROW 100 /* sqlite3_step() has another row ready */
382#define SQLITE_DONE 101 /* sqlite3_step() has finished executing */
383/* end-of-error-codes */
384
385/*
Vasu Noria4356a02010-01-20 15:10:57 -0800386** CAPI3REF: Extended Result Codes
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800387** KEYWORDS: {extended error code} {extended error codes}
Vasu Noria4356a02010-01-20 15:10:57 -0800388** KEYWORDS: {extended result code} {extended result codes}
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800389**
390** In its default configuration, SQLite API routines return one of 26 integer
Vasu Noria4356a02010-01-20 15:10:57 -0800391** [SQLITE_OK | result codes]. However, experience has shown that many of
392** these result codes are too coarse-grained. They do not provide as
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800393** much information about problems as programmers might like. In an effort to
394** address this, newer versions of SQLite (version 3.3.8 and later) include
395** support for additional result codes that provide more detailed information
396** about errors. The extended result codes are enabled or disabled
Vasu Noria4356a02010-01-20 15:10:57 -0800397** on a per database connection basis using the
398** [sqlite3_extended_result_codes()] API.
399**
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800400** Some of the available extended result codes are listed here.
401** One may expect the number of extended result codes will be expand
402** over time. Software that uses extended result codes should expect
403** to see new result codes in future releases of SQLite.
404**
405** The SQLITE_OK result code will never be extended. It will always
406** be exactly zero.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800407*/
Vasu Noria4356a02010-01-20 15:10:57 -0800408#define SQLITE_IOERR_READ (SQLITE_IOERR | (1<<8))
409#define SQLITE_IOERR_SHORT_READ (SQLITE_IOERR | (2<<8))
410#define SQLITE_IOERR_WRITE (SQLITE_IOERR | (3<<8))
411#define SQLITE_IOERR_FSYNC (SQLITE_IOERR | (4<<8))
412#define SQLITE_IOERR_DIR_FSYNC (SQLITE_IOERR | (5<<8))
413#define SQLITE_IOERR_TRUNCATE (SQLITE_IOERR | (6<<8))
414#define SQLITE_IOERR_FSTAT (SQLITE_IOERR | (7<<8))
415#define SQLITE_IOERR_UNLOCK (SQLITE_IOERR | (8<<8))
416#define SQLITE_IOERR_RDLOCK (SQLITE_IOERR | (9<<8))
417#define SQLITE_IOERR_DELETE (SQLITE_IOERR | (10<<8))
418#define SQLITE_IOERR_BLOCKED (SQLITE_IOERR | (11<<8))
419#define SQLITE_IOERR_NOMEM (SQLITE_IOERR | (12<<8))
420#define SQLITE_IOERR_ACCESS (SQLITE_IOERR | (13<<8))
421#define SQLITE_IOERR_CHECKRESERVEDLOCK (SQLITE_IOERR | (14<<8))
422#define SQLITE_IOERR_LOCK (SQLITE_IOERR | (15<<8))
423#define SQLITE_IOERR_CLOSE (SQLITE_IOERR | (16<<8))
424#define SQLITE_IOERR_DIR_CLOSE (SQLITE_IOERR | (17<<8))
425#define SQLITE_LOCKED_SHAREDCACHE (SQLITE_LOCKED | (1<<8) )
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800426
427/*
Vasu Noria4356a02010-01-20 15:10:57 -0800428** CAPI3REF: Flags For File Open Operations
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800429**
430** These bit values are intended for use in the
431** 3rd parameter to the [sqlite3_open_v2()] interface and
432** in the 4th parameter to the xOpen method of the
433** [sqlite3_vfs] object.
434*/
Vasu Noria4356a02010-01-20 15:10:57 -0800435#define SQLITE_OPEN_READONLY 0x00000001 /* Ok for sqlite3_open_v2() */
436#define SQLITE_OPEN_READWRITE 0x00000002 /* Ok for sqlite3_open_v2() */
437#define SQLITE_OPEN_CREATE 0x00000004 /* Ok for sqlite3_open_v2() */
438#define SQLITE_OPEN_DELETEONCLOSE 0x00000008 /* VFS only */
439#define SQLITE_OPEN_EXCLUSIVE 0x00000010 /* VFS only */
440#define SQLITE_OPEN_MAIN_DB 0x00000100 /* VFS only */
441#define SQLITE_OPEN_TEMP_DB 0x00000200 /* VFS only */
442#define SQLITE_OPEN_TRANSIENT_DB 0x00000400 /* VFS only */
443#define SQLITE_OPEN_MAIN_JOURNAL 0x00000800 /* VFS only */
444#define SQLITE_OPEN_TEMP_JOURNAL 0x00001000 /* VFS only */
445#define SQLITE_OPEN_SUBJOURNAL 0x00002000 /* VFS only */
446#define SQLITE_OPEN_MASTER_JOURNAL 0x00004000 /* VFS only */
447#define SQLITE_OPEN_NOMUTEX 0x00008000 /* Ok for sqlite3_open_v2() */
448#define SQLITE_OPEN_FULLMUTEX 0x00010000 /* Ok for sqlite3_open_v2() */
449#define SQLITE_OPEN_SHAREDCACHE 0x00020000 /* Ok for sqlite3_open_v2() */
450#define SQLITE_OPEN_PRIVATECACHE 0x00040000 /* Ok for sqlite3_open_v2() */
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800451
452/*
Vasu Noria4356a02010-01-20 15:10:57 -0800453** CAPI3REF: Device Characteristics
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800454**
455** The xDeviceCapabilities method of the [sqlite3_io_methods]
456** object returns an integer which is a vector of the these
457** bit values expressing I/O characteristics of the mass storage
458** device that holds the file that the [sqlite3_io_methods]
459** refers to.
460**
461** The SQLITE_IOCAP_ATOMIC property means that all writes of
462** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values
463** mean that writes of blocks that are nnn bytes in size and
464** are aligned to an address which is an integer multiple of
465** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means
466** that when data is appended to a file, the data is appended
467** first then the size of the file is extended, never the other
468** way around. The SQLITE_IOCAP_SEQUENTIAL property means that
469** information is written to disk in the same order as calls
470** to xWrite().
471*/
472#define SQLITE_IOCAP_ATOMIC 0x00000001
473#define SQLITE_IOCAP_ATOMIC512 0x00000002
474#define SQLITE_IOCAP_ATOMIC1K 0x00000004
475#define SQLITE_IOCAP_ATOMIC2K 0x00000008
476#define SQLITE_IOCAP_ATOMIC4K 0x00000010
477#define SQLITE_IOCAP_ATOMIC8K 0x00000020
478#define SQLITE_IOCAP_ATOMIC16K 0x00000040
479#define SQLITE_IOCAP_ATOMIC32K 0x00000080
480#define SQLITE_IOCAP_ATOMIC64K 0x00000100
481#define SQLITE_IOCAP_SAFE_APPEND 0x00000200
482#define SQLITE_IOCAP_SEQUENTIAL 0x00000400
483
484/*
Vasu Noria4356a02010-01-20 15:10:57 -0800485** CAPI3REF: File Locking Levels
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800486**
487** SQLite uses one of these integer values as the second
488** argument to calls it makes to the xLock() and xUnlock() methods
489** of an [sqlite3_io_methods] object.
490*/
491#define SQLITE_LOCK_NONE 0
492#define SQLITE_LOCK_SHARED 1
493#define SQLITE_LOCK_RESERVED 2
494#define SQLITE_LOCK_PENDING 3
495#define SQLITE_LOCK_EXCLUSIVE 4
496
497/*
Vasu Noria4356a02010-01-20 15:10:57 -0800498** CAPI3REF: Synchronization Type Flags
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800499**
500** When SQLite invokes the xSync() method of an
501** [sqlite3_io_methods] object it uses a combination of
502** these integer values as the second argument.
503**
504** When the SQLITE_SYNC_DATAONLY flag is used, it means that the
505** sync operation only needs to flush data to mass storage. Inode
Vasu Noria4356a02010-01-20 15:10:57 -0800506** information need not be flushed. If the lower four bits of the flag
507** equal SQLITE_SYNC_NORMAL, that means to use normal fsync() semantics.
508** If the lower four bits equal SQLITE_SYNC_FULL, that means
509** to use Mac OS X style fullsync instead of fsync().
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800510*/
511#define SQLITE_SYNC_NORMAL 0x00002
512#define SQLITE_SYNC_FULL 0x00003
513#define SQLITE_SYNC_DATAONLY 0x00010
514
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800515/*
Vasu Noria4356a02010-01-20 15:10:57 -0800516** CAPI3REF: OS Interface Open File Handle
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800517**
Vasu Noria4356a02010-01-20 15:10:57 -0800518** An [sqlite3_file] object represents an open file in the
519** [sqlite3_vfs | OS interface layer]. Individual OS interface
520** implementations will
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800521** want to subclass this object by appending additional fields
522** for their own use. The pMethods entry is a pointer to an
523** [sqlite3_io_methods] object that defines methods for performing
524** I/O operations on the open file.
525*/
526typedef struct sqlite3_file sqlite3_file;
527struct sqlite3_file {
528 const struct sqlite3_io_methods *pMethods; /* Methods for an open file */
529};
530
531/*
Vasu Noria4356a02010-01-20 15:10:57 -0800532** CAPI3REF: OS Interface File Virtual Methods Object
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800533**
Vasu Noria4356a02010-01-20 15:10:57 -0800534** Every file opened by the [sqlite3_vfs] xOpen method populates an
535** [sqlite3_file] object (or, more commonly, a subclass of the
536** [sqlite3_file] object) with a pointer to an instance of this object.
537** This object defines the methods used to perform various operations
538** against the open file represented by the [sqlite3_file] object.
539**
540** If the xOpen method sets the sqlite3_file.pMethods element
541** to a non-NULL pointer, then the sqlite3_io_methods.xClose method
542** may be invoked even if the xOpen reported that it failed. The
543** only way to prevent a call to xClose following a failed xOpen
544** is for the xOpen to set the sqlite3_file.pMethods element to NULL.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800545**
546** The flags argument to xSync may be one of [SQLITE_SYNC_NORMAL] or
547** [SQLITE_SYNC_FULL]. The first choice is the normal fsync().
Vasu Noria4356a02010-01-20 15:10:57 -0800548** The second choice is a Mac OS X style fullsync. The [SQLITE_SYNC_DATAONLY]
549** flag may be ORed in to indicate that only the data of the file
550** and not its inode needs to be synced.
551**
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800552** The integer values to xLock() and xUnlock() are one of
553** <ul>
554** <li> [SQLITE_LOCK_NONE],
555** <li> [SQLITE_LOCK_SHARED],
556** <li> [SQLITE_LOCK_RESERVED],
557** <li> [SQLITE_LOCK_PENDING], or
558** <li> [SQLITE_LOCK_EXCLUSIVE].
559** </ul>
Vasu Noria4356a02010-01-20 15:10:57 -0800560** xLock() increases the lock. xUnlock() decreases the lock.
561** The xCheckReservedLock() method checks whether any database connection,
562** either in this process or in some other process, is holding a RESERVED,
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800563** PENDING, or EXCLUSIVE lock on the file. It returns true
Vasu Noria4356a02010-01-20 15:10:57 -0800564** if such a lock exists and false otherwise.
565**
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800566** The xFileControl() method is a generic interface that allows custom
567** VFS implementations to directly control an open file using the
Vasu Noria4356a02010-01-20 15:10:57 -0800568** [sqlite3_file_control()] interface. The second "op" argument is an
569** integer opcode. The third argument is a generic pointer intended to
570** point to a structure that may contain arguments or space in which to
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800571** write return values. Potential uses for xFileControl() might be
572** functions to enable blocking locks with timeouts, to change the
573** locking strategy (for example to use dot-file locks), to inquire
574** about the status of a lock, or to break stale locks. The SQLite
Vasu Noria4356a02010-01-20 15:10:57 -0800575** core reserves all opcodes less than 100 for its own use.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800576** A [SQLITE_FCNTL_LOCKSTATE | list of opcodes] less than 100 is available.
Vasu Noria4356a02010-01-20 15:10:57 -0800577** Applications that define a custom xFileControl method should use opcodes
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800578** greater than 100 to avoid conflicts.
579**
580** The xSectorSize() method returns the sector size of the
581** device that underlies the file. The sector size is the
582** minimum write that can be performed without disturbing
583** other bytes in the file. The xDeviceCharacteristics()
584** method returns a bit vector describing behaviors of the
585** underlying device:
586**
587** <ul>
588** <li> [SQLITE_IOCAP_ATOMIC]
589** <li> [SQLITE_IOCAP_ATOMIC512]
590** <li> [SQLITE_IOCAP_ATOMIC1K]
591** <li> [SQLITE_IOCAP_ATOMIC2K]
592** <li> [SQLITE_IOCAP_ATOMIC4K]
593** <li> [SQLITE_IOCAP_ATOMIC8K]
594** <li> [SQLITE_IOCAP_ATOMIC16K]
595** <li> [SQLITE_IOCAP_ATOMIC32K]
596** <li> [SQLITE_IOCAP_ATOMIC64K]
597** <li> [SQLITE_IOCAP_SAFE_APPEND]
598** <li> [SQLITE_IOCAP_SEQUENTIAL]
599** </ul>
600**
601** The SQLITE_IOCAP_ATOMIC property means that all writes of
602** any size are atomic. The SQLITE_IOCAP_ATOMICnnn values
603** mean that writes of blocks that are nnn bytes in size and
604** are aligned to an address which is an integer multiple of
605** nnn are atomic. The SQLITE_IOCAP_SAFE_APPEND value means
606** that when data is appended to a file, the data is appended
607** first then the size of the file is extended, never the other
608** way around. The SQLITE_IOCAP_SEQUENTIAL property means that
609** information is written to disk in the same order as calls
610** to xWrite().
Vasu Noria4356a02010-01-20 15:10:57 -0800611**
612** If xRead() returns SQLITE_IOERR_SHORT_READ it must also fill
613** in the unread portions of the buffer with zeros. A VFS that
614** fails to zero-fill short reads might seem to work. However,
615** failure to zero-fill short reads will eventually lead to
616** database corruption.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800617*/
618typedef struct sqlite3_io_methods sqlite3_io_methods;
619struct sqlite3_io_methods {
620 int iVersion;
621 int (*xClose)(sqlite3_file*);
622 int (*xRead)(sqlite3_file*, void*, int iAmt, sqlite3_int64 iOfst);
623 int (*xWrite)(sqlite3_file*, const void*, int iAmt, sqlite3_int64 iOfst);
624 int (*xTruncate)(sqlite3_file*, sqlite3_int64 size);
625 int (*xSync)(sqlite3_file*, int flags);
626 int (*xFileSize)(sqlite3_file*, sqlite3_int64 *pSize);
627 int (*xLock)(sqlite3_file*, int);
628 int (*xUnlock)(sqlite3_file*, int);
Vasu Noria4356a02010-01-20 15:10:57 -0800629 int (*xCheckReservedLock)(sqlite3_file*, int *pResOut);
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800630 int (*xFileControl)(sqlite3_file*, int op, void *pArg);
631 int (*xSectorSize)(sqlite3_file*);
632 int (*xDeviceCharacteristics)(sqlite3_file*);
633 /* Additional methods may be added in future releases */
634};
635
636/*
Vasu Noria4356a02010-01-20 15:10:57 -0800637** CAPI3REF: Standard File Control Opcodes
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800638**
639** These integer constants are opcodes for the xFileControl method
Vasu Noria4356a02010-01-20 15:10:57 -0800640** of the [sqlite3_io_methods] object and for the [sqlite3_file_control()]
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800641** interface.
642**
643** The [SQLITE_FCNTL_LOCKSTATE] opcode is used for debugging. This
644** opcode causes the xFileControl method to write the current state of
645** the lock (one of [SQLITE_LOCK_NONE], [SQLITE_LOCK_SHARED],
646** [SQLITE_LOCK_RESERVED], [SQLITE_LOCK_PENDING], or [SQLITE_LOCK_EXCLUSIVE])
647** into an integer that the pArg argument points to. This capability
648** is used during testing and only needs to be supported when SQLITE_TEST
649** is defined.
650*/
651#define SQLITE_FCNTL_LOCKSTATE 1
Vasu Noria4356a02010-01-20 15:10:57 -0800652#define SQLITE_GET_LOCKPROXYFILE 2
653#define SQLITE_SET_LOCKPROXYFILE 3
654#define SQLITE_LAST_ERRNO 4
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800655
656/*
Vasu Noria4356a02010-01-20 15:10:57 -0800657** CAPI3REF: Mutex Handle
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800658**
659** The mutex module within SQLite defines [sqlite3_mutex] to be an
660** abstract type for a mutex object. The SQLite core never looks
661** at the internal representation of an [sqlite3_mutex]. It only
662** deals with pointers to the [sqlite3_mutex] object.
663**
664** Mutexes are created using [sqlite3_mutex_alloc()].
665*/
666typedef struct sqlite3_mutex sqlite3_mutex;
667
668/*
Vasu Noria4356a02010-01-20 15:10:57 -0800669** CAPI3REF: OS Interface Object
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800670**
Vasu Noria4356a02010-01-20 15:10:57 -0800671** An instance of the sqlite3_vfs object defines the interface between
672** the SQLite core and the underlying operating system. The "vfs"
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800673** in the name of the object stands for "virtual file system".
674**
Vasu Noria4356a02010-01-20 15:10:57 -0800675** The value of the iVersion field is initially 1 but may be larger in
676** future versions of SQLite. Additional fields may be appended to this
677** object when the iVersion value is increased. Note that the structure
678** of the sqlite3_vfs object changes in the transaction between
679** SQLite version 3.5.9 and 3.6.0 and yet the iVersion field was not
680** modified.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800681**
682** The szOsFile field is the size of the subclassed [sqlite3_file]
683** structure used by this VFS. mxPathname is the maximum length of
684** a pathname in this VFS.
685**
686** Registered sqlite3_vfs objects are kept on a linked list formed by
687** the pNext pointer. The [sqlite3_vfs_register()]
688** and [sqlite3_vfs_unregister()] interfaces manage this list
689** in a thread-safe way. The [sqlite3_vfs_find()] interface
Vasu Noria4356a02010-01-20 15:10:57 -0800690** searches the list. Neither the application code nor the VFS
691** implementation should use the pNext pointer.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800692**
Vasu Noria4356a02010-01-20 15:10:57 -0800693** The pNext field is the only field in the sqlite3_vfs
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800694** structure that SQLite will ever modify. SQLite will only access
695** or modify this field while holding a particular static mutex.
696** The application should never modify anything within the sqlite3_vfs
697** object once the object has been registered.
698**
699** The zName field holds the name of the VFS module. The name must
700** be unique across all VFS modules.
701**
Vasu Noria4356a02010-01-20 15:10:57 -0800702** SQLite will guarantee that the zFilename parameter to xOpen
703** is either a NULL pointer or string obtained
704** from xFullPathname(). SQLite further guarantees that
705** the string will be valid and unchanged until xClose() is
706** called. Because of the previous sentence,
707** the [sqlite3_file] can safely store a pointer to the
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800708** filename if it needs to remember the filename for some reason.
Vasu Noria4356a02010-01-20 15:10:57 -0800709** If the zFilename parameter is xOpen is a NULL pointer then xOpen
710** must invent its own temporary name for the file. Whenever the
711** xFilename parameter is NULL it will also be the case that the
712** flags parameter will include [SQLITE_OPEN_DELETEONCLOSE].
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800713**
Vasu Noria4356a02010-01-20 15:10:57 -0800714** The flags argument to xOpen() includes all bits set in
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800715** the flags argument to [sqlite3_open_v2()]. Or if [sqlite3_open()]
716** or [sqlite3_open16()] is used, then flags includes at least
Vasu Noria4356a02010-01-20 15:10:57 -0800717** [SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE].
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800718** If xOpen() opens a file read-only then it sets *pOutFlags to
Vasu Noria4356a02010-01-20 15:10:57 -0800719** include [SQLITE_OPEN_READONLY]. Other bits in *pOutFlags may be set.
720**
721** SQLite will also add one of the following flags to the xOpen()
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800722** call, depending on the object being opened:
Vasu Noria4356a02010-01-20 15:10:57 -0800723**
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800724** <ul>
725** <li> [SQLITE_OPEN_MAIN_DB]
726** <li> [SQLITE_OPEN_MAIN_JOURNAL]
727** <li> [SQLITE_OPEN_TEMP_DB]
728** <li> [SQLITE_OPEN_TEMP_JOURNAL]
729** <li> [SQLITE_OPEN_TRANSIENT_DB]
730** <li> [SQLITE_OPEN_SUBJOURNAL]
731** <li> [SQLITE_OPEN_MASTER_JOURNAL]
Vasu Noria4356a02010-01-20 15:10:57 -0800732** </ul>
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800733**
734** The file I/O implementation can use the object type flags to
Vasu Noria4356a02010-01-20 15:10:57 -0800735** change the way it deals with files. For example, an application
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800736** that does not care about crash recovery or rollback might make
737** the open of a journal file a no-op. Writes to this journal would
Vasu Noria4356a02010-01-20 15:10:57 -0800738** also be no-ops, and any attempt to read the journal would return
739** SQLITE_IOERR. Or the implementation might recognize that a database
740** file will be doing page-aligned sector reads and writes in a random
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800741** order and set up its I/O subsystem accordingly.
Vasu Noria4356a02010-01-20 15:10:57 -0800742**
743** SQLite might also add one of the following flags to the xOpen method:
744**
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800745** <ul>
746** <li> [SQLITE_OPEN_DELETEONCLOSE]
747** <li> [SQLITE_OPEN_EXCLUSIVE]
748** </ul>
Vasu Noria4356a02010-01-20 15:10:57 -0800749**
750** The [SQLITE_OPEN_DELETEONCLOSE] flag means the file should be
751** deleted when it is closed. The [SQLITE_OPEN_DELETEONCLOSE]
752** will be set for TEMP databases, journals and for subjournals.
753**
754** The [SQLITE_OPEN_EXCLUSIVE] flag is always used in conjunction
755** with the [SQLITE_OPEN_CREATE] flag, which are both directly
756** analogous to the O_EXCL and O_CREAT flags of the POSIX open()
757** API. The SQLITE_OPEN_EXCLUSIVE flag, when paired with the
758** SQLITE_OPEN_CREATE, is used to indicate that file should always
759** be created, and that it is an error if it already exists.
760** It is <i>not</i> used to indicate the file should be opened
761** for exclusive access.
762**
763** At least szOsFile bytes of memory are allocated by SQLite
764** to hold the [sqlite3_file] structure passed as the third
765** argument to xOpen. The xOpen method does not have to
766** allocate the structure; it should just fill it in. Note that
767** the xOpen method must set the sqlite3_file.pMethods to either
768** a valid [sqlite3_io_methods] object or to NULL. xOpen must do
769** this even if the open fails. SQLite expects that the sqlite3_file.pMethods
770** element will be valid after xOpen returns regardless of the success
771** or failure of the xOpen call.
772**
773** The flags argument to xAccess() may be [SQLITE_ACCESS_EXISTS]
774** to test for the existence of a file, or [SQLITE_ACCESS_READWRITE] to
775** test whether a file is readable and writable, or [SQLITE_ACCESS_READ]
776** to test whether a file is at least readable. The file can be a
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800777** directory.
Vasu Noria4356a02010-01-20 15:10:57 -0800778**
779** SQLite will always allocate at least mxPathname+1 bytes for the
780** output buffer xFullPathname. The exact size of the output buffer
781** is also passed as a parameter to both methods. If the output buffer
782** is not large enough, [SQLITE_CANTOPEN] should be returned. Since this is
783** handled as a fatal error by SQLite, vfs implementations should endeavor
784** to prevent this by setting mxPathname to a sufficiently large value.
785**
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800786** The xRandomness(), xSleep(), and xCurrentTime() interfaces
787** are not strictly a part of the filesystem, but they are
788** included in the VFS structure for completeness.
789** The xRandomness() function attempts to return nBytes bytes
790** of good-quality randomness into zOut. The return value is
Vasu Noria4356a02010-01-20 15:10:57 -0800791** the actual number of bytes of randomness obtained.
792** The xSleep() method causes the calling thread to sleep for at
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800793** least the number of microseconds given. The xCurrentTime()
Vasu Noria4356a02010-01-20 15:10:57 -0800794** method returns a Julian Day Number for the current date and time.
795**
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800796*/
797typedef struct sqlite3_vfs sqlite3_vfs;
798struct sqlite3_vfs {
799 int iVersion; /* Structure version number */
800 int szOsFile; /* Size of subclassed sqlite3_file */
801 int mxPathname; /* Maximum file pathname length */
802 sqlite3_vfs *pNext; /* Next registered VFS */
803 const char *zName; /* Name of this virtual file system */
804 void *pAppData; /* Pointer to application-specific data */
805 int (*xOpen)(sqlite3_vfs*, const char *zName, sqlite3_file*,
806 int flags, int *pOutFlags);
807 int (*xDelete)(sqlite3_vfs*, const char *zName, int syncDir);
Vasu Noria4356a02010-01-20 15:10:57 -0800808 int (*xAccess)(sqlite3_vfs*, const char *zName, int flags, int *pResOut);
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800809 int (*xFullPathname)(sqlite3_vfs*, const char *zName, int nOut, char *zOut);
810 void *(*xDlOpen)(sqlite3_vfs*, const char *zFilename);
811 void (*xDlError)(sqlite3_vfs*, int nByte, char *zErrMsg);
Vasu Noria4356a02010-01-20 15:10:57 -0800812 void (*(*xDlSym)(sqlite3_vfs*,void*, const char *zSymbol))(void);
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800813 void (*xDlClose)(sqlite3_vfs*, void*);
814 int (*xRandomness)(sqlite3_vfs*, int nByte, char *zOut);
815 int (*xSleep)(sqlite3_vfs*, int microseconds);
816 int (*xCurrentTime)(sqlite3_vfs*, double*);
Vasu Noria4356a02010-01-20 15:10:57 -0800817 int (*xGetLastError)(sqlite3_vfs*, int, char *);
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800818 /* New fields may be appended in figure versions. The iVersion
819 ** value will increment whenever this happens. */
820};
821
822/*
Vasu Noria4356a02010-01-20 15:10:57 -0800823** CAPI3REF: Flags for the xAccess VFS method
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800824**
Vasu Noria4356a02010-01-20 15:10:57 -0800825** These integer constants can be used as the third parameter to
826** the xAccess method of an [sqlite3_vfs] object. They determine
827** what kind of permissions the xAccess method is looking for.
828** With SQLITE_ACCESS_EXISTS, the xAccess method
829** simply checks whether the file exists.
830** With SQLITE_ACCESS_READWRITE, the xAccess method
831** checks whether the file is both readable and writable.
832** With SQLITE_ACCESS_READ, the xAccess method
833** checks whether the file is readable.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800834*/
835#define SQLITE_ACCESS_EXISTS 0
836#define SQLITE_ACCESS_READWRITE 1
837#define SQLITE_ACCESS_READ 2
838
839/*
Vasu Noria4356a02010-01-20 15:10:57 -0800840** CAPI3REF: Initialize The SQLite Library
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800841**
Vasu Noria4356a02010-01-20 15:10:57 -0800842** ^The sqlite3_initialize() routine initializes the
843** SQLite library. ^The sqlite3_shutdown() routine
844** deallocates any resources that were allocated by sqlite3_initialize().
845** These routines are designed to aid in process initialization and
846** shutdown on embedded systems. Workstation applications using
847** SQLite normally do not need to invoke either of these routines.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800848**
Vasu Noria4356a02010-01-20 15:10:57 -0800849** A call to sqlite3_initialize() is an "effective" call if it is
850** the first time sqlite3_initialize() is invoked during the lifetime of
851** the process, or if it is the first time sqlite3_initialize() is invoked
852** following a call to sqlite3_shutdown(). ^(Only an effective call
853** of sqlite3_initialize() does any initialization. All other calls
854** are harmless no-ops.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800855**
Vasu Noria4356a02010-01-20 15:10:57 -0800856** A call to sqlite3_shutdown() is an "effective" call if it is the first
857** call to sqlite3_shutdown() since the last sqlite3_initialize(). ^(Only
858** an effective call to sqlite3_shutdown() does any deinitialization.
859** All other valid calls to sqlite3_shutdown() are harmless no-ops.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800860**
Vasu Noria4356a02010-01-20 15:10:57 -0800861** The sqlite3_initialize() interface is threadsafe, but sqlite3_shutdown()
862** is not. The sqlite3_shutdown() interface must only be called from a
863** single thread. All open [database connections] must be closed and all
864** other SQLite resources must be deallocated prior to invoking
865** sqlite3_shutdown().
866**
867** Among other things, ^sqlite3_initialize() will invoke
868** sqlite3_os_init(). Similarly, ^sqlite3_shutdown()
869** will invoke sqlite3_os_end().
870**
871** ^The sqlite3_initialize() routine returns [SQLITE_OK] on success.
872** ^If for some reason, sqlite3_initialize() is unable to initialize
873** the library (perhaps it is unable to allocate a needed resource such
874** as a mutex) it returns an [error code] other than [SQLITE_OK].
875**
876** ^The sqlite3_initialize() routine is called internally by many other
877** SQLite interfaces so that an application usually does not need to
878** invoke sqlite3_initialize() directly. For example, [sqlite3_open()]
879** calls sqlite3_initialize() so the SQLite library will be automatically
880** initialized when [sqlite3_open()] is called if it has not be initialized
881** already. ^However, if SQLite is compiled with the [SQLITE_OMIT_AUTOINIT]
882** compile-time option, then the automatic calls to sqlite3_initialize()
883** are omitted and the application must call sqlite3_initialize() directly
884** prior to using any other SQLite interface. For maximum portability,
885** it is recommended that applications always invoke sqlite3_initialize()
886** directly prior to using any other SQLite interface. Future releases
887** of SQLite may require this. In other words, the behavior exhibited
888** when SQLite is compiled with [SQLITE_OMIT_AUTOINIT] might become the
889** default behavior in some future release of SQLite.
890**
891** The sqlite3_os_init() routine does operating-system specific
892** initialization of the SQLite library. The sqlite3_os_end()
893** routine undoes the effect of sqlite3_os_init(). Typical tasks
894** performed by these routines include allocation or deallocation
895** of static resources, initialization of global variables,
896** setting up a default [sqlite3_vfs] module, or setting up
897** a default configuration using [sqlite3_config()].
898**
899** The application should never invoke either sqlite3_os_init()
900** or sqlite3_os_end() directly. The application should only invoke
901** sqlite3_initialize() and sqlite3_shutdown(). The sqlite3_os_init()
902** interface is called automatically by sqlite3_initialize() and
903** sqlite3_os_end() is called by sqlite3_shutdown(). Appropriate
904** implementations for sqlite3_os_init() and sqlite3_os_end()
905** are built into SQLite when it is compiled for Unix, Windows, or OS/2.
906** When [custom builds | built for other platforms]
907** (using the [SQLITE_OS_OTHER=1] compile-time
908** option) the application must supply a suitable implementation for
909** sqlite3_os_init() and sqlite3_os_end(). An application-supplied
910** implementation of sqlite3_os_init() or sqlite3_os_end()
911** must return [SQLITE_OK] on success and some other [error code] upon
912** failure.
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800913*/
Vasu Noria4356a02010-01-20 15:10:57 -0800914SQLITE_API int sqlite3_initialize(void);
915SQLITE_API int sqlite3_shutdown(void);
916SQLITE_API int sqlite3_os_init(void);
917SQLITE_API int sqlite3_os_end(void);
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800918
919/*
Vasu Noria4356a02010-01-20 15:10:57 -0800920** CAPI3REF: Configuring The SQLite Library
Vasu Nori9d9edcf2010-03-01 15:28:13 -0800921** EXPERIMENTAL
The Android Open Source Project7790ef52009-03-03 19:30:40 -0800922**
Vasu Noria4356a02010-01-20 15:10:57 -0800923** The sqlite3_config() interface is used to make global configuration
924** changes to SQLite in order to tune SQLite to the specific needs of
925** the application. The default configuration is recommended for most
926** applications and so this routine is usually not necessary. It is
927** provided to support rare applications with unusual needs.
928**
929** The sqlite3_config() interface is not threadsafe. The application
930** must insure that no other SQLite interfaces are invoked by other
931** threads while sqlite3_config() is running. Furthermore, sqlite3_config()
932** may only be invoked prior to library initialization using
933** [sqlite3_initialize()] or after shutdown by [sqlite3_shutdown()].
934** ^If sqlite3_config() is called after [sqlite3_initialize()] and before
935** [sqlite3_shutdown()] then it will return SQLITE_MISUSE.
936** Note, however, that ^sqlite3_config() can be called as part of the
937** implementation of an application-defined [sqlite3_os_init()].
938**
939** The first argument to sqlite3_config() is an integer
940** [SQLITE_CONFIG_SINGLETHREAD | configuration option] that determines
941** what property of SQLite is to be configured. Subsequent arguments
942** vary depending on the [SQLITE_CONFIG_SINGLETHREAD | configuration option]
943** in the first argument.
944**
945** ^When a configuration option is set, sqlite3_config() returns [SQLITE_OK].
946** ^If the option is unknown or SQLite is unable to set the option
947** then this routine returns a non-zero [error code].
948*/
949SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_config(int, ...);
950
951/*
952** CAPI3REF: Configure database connections
953** EXPERIMENTAL
954**
955** The sqlite3_db_config() interface is used to make configuration
956** changes to a [database connection]. The interface is similar to
957** [sqlite3_config()] except that the changes apply to a single
958** [database connection] (specified in the first argument). The
959** sqlite3_db_config() interface should only be used immediately after
960** the database connection is created using [sqlite3_open()],
961** [sqlite3_open16()], or [sqlite3_open_v2()].
962**
963** The second argument to sqlite3_db_config(D,V,...) is the
964** configuration verb - an integer code that indicates what
965** aspect of the [database connection] is being configured.
966** The only choice for this value is [SQLITE_DBCONFIG_LOOKASIDE].
967** New verbs are likely to be added in future releases of SQLite.
968** Additional arguments depend on the verb.
969**
970** ^Calls to sqlite3_db_config() return SQLITE_OK if and only if
971** the call is considered successful.
972*/
973SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_db_config(sqlite3*, int op, ...);
974
975/*
976** CAPI3REF: Memory Allocation Routines
977** EXPERIMENTAL
978**
979** An instance of this object defines the interface between SQLite
980** and low-level memory allocation routines.
981**
982** This object is used in only one place in the SQLite interface.
983** A pointer to an instance of this object is the argument to
984** [sqlite3_config()] when the configuration option is
985** [SQLITE_CONFIG_MALLOC] or [SQLITE_CONFIG_GETMALLOC].
986** By creating an instance of this object
987** and passing it to [sqlite3_config]([SQLITE_CONFIG_MALLOC])
988** during configuration, an application can specify an alternative
989** memory allocation subsystem for SQLite to use for all of its
990** dynamic memory needs.
991**
992** Note that SQLite comes with several [built-in memory allocators]
993** that are perfectly adequate for the overwhelming majority of applications
994** and that this object is only useful to a tiny minority of applications
995** with specialized memory allocation requirements. This object is
996** also used during testing of SQLite in order to specify an alternative
997** memory allocator that simulates memory out-of-memory conditions in
998** order to verify that SQLite recovers gracefully from such
999** conditions.
1000**
1001** The xMalloc and xFree methods must work like the
1002** malloc() and free() functions from the standard C library.
1003** The xRealloc method must work like realloc() from the standard C library
1004** with the exception that if the second argument to xRealloc is zero,
1005** xRealloc must be a no-op - it must not perform any allocation or
1006** deallocation. ^SQLite guarantees that the second argument to
1007** xRealloc is always a value returned by a prior call to xRoundup.
1008** And so in cases where xRoundup always returns a positive number,
1009** xRealloc can perform exactly as the standard library realloc() and
1010** still be in compliance with this specification.
1011**
1012** xSize should return the allocated size of a memory allocation
1013** previously obtained from xMalloc or xRealloc. The allocated size
1014** is always at least as big as the requested size but may be larger.
1015**
1016** The xRoundup method returns what would be the allocated size of
1017** a memory allocation given a particular requested size. Most memory
1018** allocators round up memory allocations at least to the next multiple
1019** of 8. Some allocators round up to a larger multiple or to a power of 2.
1020** Every memory allocation request coming in through [sqlite3_malloc()]
1021** or [sqlite3_realloc()] first calls xRoundup. If xRoundup returns 0,
1022** that causes the corresponding memory allocation to fail.
1023**
1024** The xInit method initializes the memory allocator. (For example,
1025** it might allocate any require mutexes or initialize internal data
1026** structures. The xShutdown method is invoked (indirectly) by
1027** [sqlite3_shutdown()] and should deallocate any resources acquired
1028** by xInit. The pAppData pointer is used as the only parameter to
1029** xInit and xShutdown.
1030**
1031** SQLite holds the [SQLITE_MUTEX_STATIC_MASTER] mutex when it invokes
1032** the xInit method, so the xInit method need not be threadsafe. The
1033** xShutdown method is only called from [sqlite3_shutdown()] so it does
1034** not need to be threadsafe either. For all other methods, SQLite
1035** holds the [SQLITE_MUTEX_STATIC_MEM] mutex as long as the
1036** [SQLITE_CONFIG_MEMSTATUS] configuration option is turned on (which
1037** it is by default) and so the methods are automatically serialized.
1038** However, if [SQLITE_CONFIG_MEMSTATUS] is disabled, then the other
1039** methods must be threadsafe or else make their own arrangements for
1040** serialization.
1041**
1042** SQLite will never invoke xInit() more than once without an intervening
1043** call to xShutdown().
1044*/
1045typedef struct sqlite3_mem_methods sqlite3_mem_methods;
1046struct sqlite3_mem_methods {
1047 void *(*xMalloc)(int); /* Memory allocation function */
1048 void (*xFree)(void*); /* Free a prior allocation */
1049 void *(*xRealloc)(void*,int); /* Resize an allocation */
1050 int (*xSize)(void*); /* Return the size of an allocation */
1051 int (*xRoundup)(int); /* Round up request size to allocation size */
1052 int (*xInit)(void*); /* Initialize the memory allocator */
1053 void (*xShutdown)(void*); /* Deinitialize the memory allocator */
1054 void *pAppData; /* Argument to xInit() and xShutdown() */
1055};
1056
1057/*
1058** CAPI3REF: Configuration Options
1059** EXPERIMENTAL
1060**
1061** These constants are the available integer configuration options that
1062** can be passed as the first argument to the [sqlite3_config()] interface.
1063**
1064** New configuration options may be added in future releases of SQLite.
1065** Existing configuration options might be discontinued. Applications
1066** should check the return code from [sqlite3_config()] to make sure that
1067** the call worked. The [sqlite3_config()] interface will return a
1068** non-zero [error code] if a discontinued or unsupported configuration option
1069** is invoked.
1070**
1071** <dl>
1072** <dt>SQLITE_CONFIG_SINGLETHREAD</dt>
1073** <dd>There are no arguments to this option. ^This option sets the
1074** [threading mode] to Single-thread. In other words, it disables
1075** all mutexing and puts SQLite into a mode where it can only be used
1076** by a single thread. ^If SQLite is compiled with
1077** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
1078** it is not possible to change the [threading mode] from its default
1079** value of Single-thread and so [sqlite3_config()] will return
1080** [SQLITE_ERROR] if called with the SQLITE_CONFIG_SINGLETHREAD
1081** configuration option.</dd>
1082**
1083** <dt>SQLITE_CONFIG_MULTITHREAD</dt>
1084** <dd>There are no arguments to this option. ^This option sets the
1085** [threading mode] to Multi-thread. In other words, it disables
1086** mutexing on [database connection] and [prepared statement] objects.
1087** The application is responsible for serializing access to
1088** [database connections] and [prepared statements]. But other mutexes
1089** are enabled so that SQLite will be safe to use in a multi-threaded
1090** environment as long as no two threads attempt to use the same
1091** [database connection] at the same time. ^If SQLite is compiled with
1092** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
1093** it is not possible to set the Multi-thread [threading mode] and
1094** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
1095** SQLITE_CONFIG_MULTITHREAD configuration option.</dd>
1096**
1097** <dt>SQLITE_CONFIG_SERIALIZED</dt>
1098** <dd>There are no arguments to this option. ^This option sets the
1099** [threading mode] to Serialized. In other words, this option enables
1100** all mutexes including the recursive
1101** mutexes on [database connection] and [prepared statement] objects.
1102** In this mode (which is the default when SQLite is compiled with
1103** [SQLITE_THREADSAFE=1]) the SQLite library will itself serialize access
1104** to [database connections] and [prepared statements] so that the
1105** application is free to use the same [database connection] or the
1106** same [prepared statement] in different threads at the same time.
1107** ^If SQLite is compiled with
1108** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
1109** it is not possible to set the Serialized [threading mode] and
1110** [sqlite3_config()] will return [SQLITE_ERROR] if called with the
1111** SQLITE_CONFIG_SERIALIZED configuration option.</dd>
1112**
1113** <dt>SQLITE_CONFIG_MALLOC</dt>
1114** <dd> ^(This option takes a single argument which is a pointer to an
1115** instance of the [sqlite3_mem_methods] structure. The argument specifies
1116** alternative low-level memory allocation routines to be used in place of
1117** the memory allocation routines built into SQLite.)^ ^SQLite makes
1118** its own private copy of the content of the [sqlite3_mem_methods] structure
1119** before the [sqlite3_config()] call returns.</dd>
1120**
1121** <dt>SQLITE_CONFIG_GETMALLOC</dt>
1122** <dd> ^(This option takes a single argument which is a pointer to an
1123** instance of the [sqlite3_mem_methods] structure. The [sqlite3_mem_methods]
1124** structure is filled with the currently defined memory allocation routines.)^
1125** This option can be used to overload the default memory allocation
1126** routines with a wrapper that simulations memory allocation failure or
1127** tracks memory usage, for example. </dd>
1128**
1129** <dt>SQLITE_CONFIG_MEMSTATUS</dt>
1130** <dd> ^This option takes single argument of type int, interpreted as a
1131** boolean, which enables or disables the collection of memory allocation
1132** statistics. ^(When memory allocation statistics are disabled, the
1133** following SQLite interfaces become non-operational:
1134** <ul>
1135** <li> [sqlite3_memory_used()]
1136** <li> [sqlite3_memory_highwater()]
1137** <li> [sqlite3_soft_heap_limit()]
1138** <li> [sqlite3_status()]
1139** </ul>)^
1140** ^Memory allocation statistics are enabled by default unless SQLite is
1141** compiled with [SQLITE_DEFAULT_MEMSTATUS]=0 in which case memory
1142** allocation statistics are disabled by default.
1143** </dd>
1144**
1145** <dt>SQLITE_CONFIG_SCRATCH</dt>
1146** <dd> ^This option specifies a static memory buffer that SQLite can use for
1147** scratch memory. There are three arguments: A pointer an 8-byte
1148** aligned memory buffer from which the scrach allocations will be
1149** drawn, the size of each scratch allocation (sz),
1150** and the maximum number of scratch allocations (N). The sz
1151** argument must be a multiple of 16. The sz parameter should be a few bytes
1152** larger than the actual scratch space required due to internal overhead.
1153** The first argument must be a pointer to an 8-byte aligned buffer
1154** of at least sz*N bytes of memory.
1155** ^SQLite will use no more than one scratch buffer per thread. So
1156** N should be set to the expected maximum number of threads. ^SQLite will
1157** never require a scratch buffer that is more than 6 times the database
1158** page size. ^If SQLite needs needs additional scratch memory beyond
1159** what is provided by this configuration option, then
1160** [sqlite3_malloc()] will be used to obtain the memory needed.</dd>
1161**
1162** <dt>SQLITE_CONFIG_PAGECACHE</dt>
1163** <dd> ^This option specifies a static memory buffer that SQLite can use for
1164** the database page cache with the default page cache implemenation.
1165** This configuration should not be used if an application-define page
1166** cache implementation is loaded using the SQLITE_CONFIG_PCACHE option.
1167** There are three arguments to this option: A pointer to 8-byte aligned
1168** memory, the size of each page buffer (sz), and the number of pages (N).
1169** The sz argument should be the size of the largest database page
1170** (a power of two between 512 and 32768) plus a little extra for each
1171** page header. ^The page header size is 20 to 40 bytes depending on
1172** the host architecture. ^It is harmless, apart from the wasted memory,
1173** to make sz a little too large. The first
1174** argument should point to an allocation of at least sz*N bytes of memory.
1175** ^SQLite will use the memory provided by the first argument to satisfy its
1176** memory needs for the first N pages that it adds to cache. ^If additional
1177** page cache memory is needed beyond what is provided by this option, then
1178** SQLite goes to [sqlite3_malloc()] for the additional storage space.
1179** ^The implementation might use one or more of the N buffers to hold
1180** memory accounting information. The pointer in the first argument must
1181** be aligned to an 8-byte boundary or subsequent behavior of SQLite
1182** will be undefined.</dd>
1183**
1184** <dt>SQLITE_CONFIG_HEAP</dt>
1185** <dd> ^This option specifies a static memory buffer that SQLite will use
1186** for all of its dynamic memory allocation needs beyond those provided
1187** for by [SQLITE_CONFIG_SCRATCH] and [SQLITE_CONFIG_PAGECACHE].
1188** There are three arguments: An 8-byte aligned pointer to the memory,
1189** the number of bytes in the memory buffer, and the minimum allocation size.
1190** ^If the first pointer (the memory pointer) is NULL, then SQLite reverts
1191** to using its default memory allocator (the system malloc() implementation),
1192** undoing any prior invocation of [SQLITE_CONFIG_MALLOC]. ^If the
1193** memory pointer is not NULL and either [SQLITE_ENABLE_MEMSYS3] or
1194** [SQLITE_ENABLE_MEMSYS5] are defined, then the alternative memory
1195** allocator is engaged to handle all of SQLites memory allocation needs.
1196** The first pointer (the memory pointer) must be aligned to an 8-byte
1197** boundary or subsequent behavior of SQLite will be undefined.</dd>
1198**
1199** <dt>SQLITE_CONFIG_MUTEX</dt>
1200** <dd> ^(This option takes a single argument which is a pointer to an
1201** instance of the [sqlite3_mutex_methods] structure. The argument specifies
1202** alternative low-level mutex routines to be used in place
1203** the mutex routines built into SQLite.)^ ^SQLite makes a copy of the
1204** content of the [sqlite3_mutex_methods] structure before the call to
1205** [sqlite3_config()] returns. ^If SQLite is compiled with
1206** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
1207** the entire mutexing subsystem is omitted from the build and hence calls to
1208** [sqlite3_config()] with the SQLITE_CONFIG_MUTEX configuration option will
1209** return [SQLITE_ERROR].</dd>
1210**
1211** <dt>SQLITE_CONFIG_GETMUTEX</dt>
1212** <dd> ^(This option takes a single argument which is a pointer to an
1213** instance of the [sqlite3_mutex_methods] structure. The
1214** [sqlite3_mutex_methods]
1215** structure is filled with the currently defined mutex routines.)^
1216** This option can be used to overload the default mutex allocation
1217** routines with a wrapper used to track mutex usage for performance
1218** profiling or testing, for example. ^If SQLite is compiled with
1219** the [SQLITE_THREADSAFE | SQLITE_THREADSAFE=0] compile-time option then
1220** the entire mutexing subsystem is omitted from the build and hence calls to
1221** [sqlite3_config()] with the SQLITE_CONFIG_GETMUTEX configuration option will
1222** return [SQLITE_ERROR].</dd>
1223**
1224** <dt>SQLITE_CONFIG_LOOKASIDE</dt>
1225** <dd> ^(This option takes two arguments that determine the default
1226** memory allocation for the lookaside memory allocator on each
1227** [database connection]. The first argument is the
1228** size of each lookaside buffer slot and the second is the number of
1229** slots allocated to each database connection.)^ ^(This option sets the
1230** <i>default</i> lookaside size. The [SQLITE_DBCONFIG_LOOKASIDE]
1231** verb to [sqlite3_db_config()] can be used to change the lookaside
1232** configuration on individual connections.)^ </dd>
1233**
1234** <dt>SQLITE_CONFIG_PCACHE</dt>
1235** <dd> ^(This option takes a single argument which is a pointer to
1236** an [sqlite3_pcache_methods] object. This object specifies the interface
1237** to a custom page cache implementation.)^ ^SQLite makes a copy of the
1238** object and uses it for page cache memory allocations.</dd>
1239**
1240** <dt>SQLITE_CONFIG_GETPCACHE</dt>
1241** <dd> ^(This option takes a single argument which is a pointer to an
1242** [sqlite3_pcache_methods] object. SQLite copies of the current
1243** page cache implementation into that object.)^ </dd>
1244**
1245** </dl>
1246*/
1247#define SQLITE_CONFIG_SINGLETHREAD 1 /* nil */
1248#define SQLITE_CONFIG_MULTITHREAD 2 /* nil */
1249#define SQLITE_CONFIG_SERIALIZED 3 /* nil */
1250#define SQLITE_CONFIG_MALLOC 4 /* sqlite3_mem_methods* */
1251#define SQLITE_CONFIG_GETMALLOC 5 /* sqlite3_mem_methods* */
1252#define SQLITE_CONFIG_SCRATCH 6 /* void*, int sz, int N */
1253#define SQLITE_CONFIG_PAGECACHE 7 /* void*, int sz, int N */
1254#define SQLITE_CONFIG_HEAP 8 /* void*, int nByte, int min */
1255#define SQLITE_CONFIG_MEMSTATUS 9 /* boolean */
1256#define SQLITE_CONFIG_MUTEX 10 /* sqlite3_mutex_methods* */
1257#define SQLITE_CONFIG_GETMUTEX 11 /* sqlite3_mutex_methods* */
1258/* previously SQLITE_CONFIG_CHUNKALLOC 12 which is now unused. */
1259#define SQLITE_CONFIG_LOOKASIDE 13 /* int int */
1260#define SQLITE_CONFIG_PCACHE 14 /* sqlite3_pcache_methods* */
1261#define SQLITE_CONFIG_GETPCACHE 15 /* sqlite3_pcache_methods* */
1262
1263/*
1264** CAPI3REF: Configuration Options
1265** EXPERIMENTAL
1266**
1267** These constants are the available integer configuration options that
1268** can be passed as the second argument to the [sqlite3_db_config()] interface.
1269**
1270** New configuration options may be added in future releases of SQLite.
1271** Existing configuration options might be discontinued. Applications
1272** should check the return code from [sqlite3_db_config()] to make sure that
1273** the call worked. ^The [sqlite3_db_config()] interface will return a
1274** non-zero [error code] if a discontinued or unsupported configuration option
1275** is invoked.
1276**
1277** <dl>
1278** <dt>SQLITE_DBCONFIG_LOOKASIDE</dt>
1279** <dd> ^This option takes three additional arguments that determine the
1280** [lookaside memory allocator] configuration for the [database connection].
1281** ^The first argument (the third parameter to [sqlite3_db_config()] is a
1282** pointer to an memory buffer to use for lookaside memory.
1283** ^The first argument after the SQLITE_DBCONFIG_LOOKASIDE verb
1284** may be NULL in which case SQLite will allocate the
1285** lookaside buffer itself using [sqlite3_malloc()]. ^The second argument is the
1286** size of each lookaside buffer slot. ^The third argument is the number of
1287** slots. The size of the buffer in the first argument must be greater than
1288** or equal to the product of the second and third arguments. The buffer
1289** must be aligned to an 8-byte boundary. ^If the second argument to
1290** SQLITE_DBCONFIG_LOOKASIDE is not a multiple of 8, it is internally
1291** rounded down to the next smaller
1292** multiple of 8. See also: [SQLITE_CONFIG_LOOKASIDE]</dd>
1293**
1294** </dl>
1295*/
1296#define SQLITE_DBCONFIG_LOOKASIDE 1001 /* void* int int */
1297
1298
1299/*
1300** CAPI3REF: Enable Or Disable Extended Result Codes
1301**
1302** ^The sqlite3_extended_result_codes() routine enables or disables the
1303** [extended result codes] feature of SQLite. ^The extended result
1304** codes are disabled by default for historical compatibility.
1305*/
1306SQLITE_API int sqlite3_extended_result_codes(sqlite3*, int onoff);
1307
1308/*
1309** CAPI3REF: Last Insert Rowid
1310**
1311** ^Each entry in an SQLite table has a unique 64-bit signed
1312** integer key called the [ROWID | "rowid"]. ^The rowid is always available
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001313** as an undeclared column named ROWID, OID, or _ROWID_ as long as those
Vasu Noria4356a02010-01-20 15:10:57 -08001314** names are not also used by explicitly declared columns. ^If
1315** the table has a column of type [INTEGER PRIMARY KEY] then that column
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001316** is another alias for the rowid.
1317**
Vasu Noria4356a02010-01-20 15:10:57 -08001318** ^This routine returns the [rowid] of the most recent
1319** successful [INSERT] into the database from the [database connection]
1320** in the first argument. ^If no successful [INSERT]s
1321** have ever occurred on that database connection, zero is returned.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001322**
Vasu Noria4356a02010-01-20 15:10:57 -08001323** ^(If an [INSERT] occurs within a trigger, then the [rowid] of the inserted
1324** row is returned by this routine as long as the trigger is running.
1325** But once the trigger terminates, the value returned by this routine
1326** reverts to the last value inserted before the trigger fired.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001327**
Vasu Noria4356a02010-01-20 15:10:57 -08001328** ^An [INSERT] that fails due to a constraint violation is not a
1329** successful [INSERT] and does not change the value returned by this
1330** routine. ^Thus INSERT OR FAIL, INSERT OR IGNORE, INSERT OR ROLLBACK,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001331** and INSERT OR ABORT make no changes to the return value of this
Vasu Noria4356a02010-01-20 15:10:57 -08001332** routine when their insertion fails. ^(When INSERT OR REPLACE
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001333** encounters a constraint violation, it does not fail. The
1334** INSERT continues to completion after deleting rows that caused
1335** the constraint problem so INSERT OR REPLACE will always change
Vasu Noria4356a02010-01-20 15:10:57 -08001336** the return value of this interface.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001337**
Vasu Noria4356a02010-01-20 15:10:57 -08001338** ^For the purposes of this routine, an [INSERT] is considered to
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001339** be successful even if it is subsequently rolled back.
1340**
Vasu Noria4356a02010-01-20 15:10:57 -08001341** This function is accessible to SQL statements via the
1342** [last_insert_rowid() SQL function].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001343**
Vasu Noria4356a02010-01-20 15:10:57 -08001344** If a separate thread performs a new [INSERT] on the same
1345** database connection while the [sqlite3_last_insert_rowid()]
1346** function is running and thus changes the last insert [rowid],
1347** then the value returned by [sqlite3_last_insert_rowid()] is
1348** unpredictable and might not equal either the old or the new
1349** last insert [rowid].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001350*/
Vasu Noria4356a02010-01-20 15:10:57 -08001351SQLITE_API sqlite3_int64 sqlite3_last_insert_rowid(sqlite3*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001352
1353/*
Vasu Noria4356a02010-01-20 15:10:57 -08001354** CAPI3REF: Count The Number Of Rows Modified
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001355**
Vasu Noria4356a02010-01-20 15:10:57 -08001356** ^This function returns the number of database rows that were changed
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001357** or inserted or deleted by the most recently completed SQL statement
Vasu Noria4356a02010-01-20 15:10:57 -08001358** on the [database connection] specified by the first parameter.
1359** ^(Only changes that are directly specified by the [INSERT], [UPDATE],
1360** or [DELETE] statement are counted. Auxiliary changes caused by
1361** triggers or [foreign key actions] are not counted.)^ Use the
1362** [sqlite3_total_changes()] function to find the total number of changes
1363** including changes caused by triggers and foreign key actions.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001364**
Vasu Noria4356a02010-01-20 15:10:57 -08001365** ^Changes to a view that are simulated by an [INSTEAD OF trigger]
1366** are not counted. Only real table changes are counted.
1367**
1368** ^(A "row change" is a change to a single row of a single table
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001369** caused by an INSERT, DELETE, or UPDATE statement. Rows that
Vasu Noria4356a02010-01-20 15:10:57 -08001370** are changed as side effects of [REPLACE] constraint resolution,
1371** rollback, ABORT processing, [DROP TABLE], or by any other
1372** mechanisms do not count as direct row changes.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001373**
1374** A "trigger context" is a scope of execution that begins and
Vasu Noria4356a02010-01-20 15:10:57 -08001375** ends with the script of a [CREATE TRIGGER | trigger].
1376** Most SQL statements are
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001377** evaluated outside of any trigger. This is the "top level"
1378** trigger context. If a trigger fires from the top level, a
1379** new trigger context is entered for the duration of that one
1380** trigger. Subtriggers create subcontexts for their duration.
1381**
Vasu Noria4356a02010-01-20 15:10:57 -08001382** ^Calling [sqlite3_exec()] or [sqlite3_step()] recursively does
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001383** not create a new trigger context.
1384**
Vasu Noria4356a02010-01-20 15:10:57 -08001385** ^This function returns the number of direct row changes in the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001386** most recent INSERT, UPDATE, or DELETE statement within the same
1387** trigger context.
1388**
Vasu Noria4356a02010-01-20 15:10:57 -08001389** ^Thus, when called from the top level, this function returns the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001390** number of changes in the most recent INSERT, UPDATE, or DELETE
Vasu Noria4356a02010-01-20 15:10:57 -08001391** that also occurred at the top level. ^(Within the body of a trigger,
1392** the sqlite3_changes() interface can be called to find the number of
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001393** changes in the most recently completed INSERT, UPDATE, or DELETE
1394** statement within the body of the same trigger.
Vasu Noria4356a02010-01-20 15:10:57 -08001395** However, the number returned does not include changes
1396** caused by subtriggers since those have their own context.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001397**
Vasu Noria4356a02010-01-20 15:10:57 -08001398** See also the [sqlite3_total_changes()] interface, the
1399** [count_changes pragma], and the [changes() SQL function].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001400**
Vasu Noria4356a02010-01-20 15:10:57 -08001401** If a separate thread makes changes on the same database connection
1402** while [sqlite3_changes()] is running then the value returned
1403** is unpredictable and not meaningful.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001404*/
Vasu Noria4356a02010-01-20 15:10:57 -08001405SQLITE_API int sqlite3_changes(sqlite3*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001406
1407/*
Vasu Noria4356a02010-01-20 15:10:57 -08001408** CAPI3REF: Total Number Of Rows Modified
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001409**
Vasu Noria4356a02010-01-20 15:10:57 -08001410** ^This function returns the number of row changes caused by [INSERT],
1411** [UPDATE] or [DELETE] statements since the [database connection] was opened.
1412** ^(The count returned by sqlite3_total_changes() includes all changes
1413** from all [CREATE TRIGGER | trigger] contexts and changes made by
1414** [foreign key actions]. However,
1415** the count does not include changes used to implement [REPLACE] constraints,
1416** do rollbacks or ABORT processing, or [DROP TABLE] processing. The
1417** count does not include rows of views that fire an [INSTEAD OF trigger],
1418** though if the INSTEAD OF trigger makes changes of its own, those changes
1419** are counted.)^
1420** ^The sqlite3_total_changes() function counts the changes as soon as
1421** the statement that makes them is completed (when the statement handle
1422** is passed to [sqlite3_reset()] or [sqlite3_finalize()]).
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001423**
Vasu Noria4356a02010-01-20 15:10:57 -08001424** See also the [sqlite3_changes()] interface, the
1425** [count_changes pragma], and the [total_changes() SQL function].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001426**
Vasu Noria4356a02010-01-20 15:10:57 -08001427** If a separate thread makes changes on the same database connection
1428** while [sqlite3_total_changes()] is running then the value
1429** returned is unpredictable and not meaningful.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001430*/
Vasu Noria4356a02010-01-20 15:10:57 -08001431SQLITE_API int sqlite3_total_changes(sqlite3*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001432
1433/*
Vasu Noria4356a02010-01-20 15:10:57 -08001434** CAPI3REF: Interrupt A Long-Running Query
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001435**
Vasu Noria4356a02010-01-20 15:10:57 -08001436** ^This function causes any pending database operation to abort and
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001437** return at its earliest opportunity. This routine is typically
1438** called in response to a user action such as pressing "Cancel"
1439** or Ctrl-C where the user wants a long query operation to halt
1440** immediately.
1441**
Vasu Noria4356a02010-01-20 15:10:57 -08001442** ^It is safe to call this routine from a thread different from the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001443** thread that is currently running the database operation. But it
Vasu Noria4356a02010-01-20 15:10:57 -08001444** is not safe to call this routine with a [database connection] that
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001445** is closed or might close before sqlite3_interrupt() returns.
1446**
Vasu Noria4356a02010-01-20 15:10:57 -08001447** ^If an SQL operation is very nearly finished at the time when
1448** sqlite3_interrupt() is called, then it might not have an opportunity
1449** to be interrupted and might continue to completion.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001450**
Vasu Noria4356a02010-01-20 15:10:57 -08001451** ^An SQL operation that is interrupted will return [SQLITE_INTERRUPT].
1452** ^If the interrupted SQL operation is an INSERT, UPDATE, or DELETE
1453** that is inside an explicit transaction, then the entire transaction
1454** will be rolled back automatically.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001455**
Vasu Noria4356a02010-01-20 15:10:57 -08001456** ^The sqlite3_interrupt(D) call is in effect until all currently running
1457** SQL statements on [database connection] D complete. ^Any new SQL statements
1458** that are started after the sqlite3_interrupt() call and before the
1459** running statements reaches zero are interrupted as if they had been
1460** running prior to the sqlite3_interrupt() call. ^New SQL statements
1461** that are started after the running statement count reaches zero are
1462** not effected by the sqlite3_interrupt().
1463** ^A call to sqlite3_interrupt(D) that occurs when there are no running
1464** SQL statements is a no-op and has no effect on SQL statements
1465** that are started after the sqlite3_interrupt() call returns.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001466**
Vasu Noria4356a02010-01-20 15:10:57 -08001467** If the database connection closes while [sqlite3_interrupt()]
1468** is running then bad things will likely happen.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001469*/
Vasu Noria4356a02010-01-20 15:10:57 -08001470SQLITE_API void sqlite3_interrupt(sqlite3*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001471
1472/*
Vasu Noria4356a02010-01-20 15:10:57 -08001473** CAPI3REF: Determine If An SQL Statement Is Complete
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001474**
Vasu Noria4356a02010-01-20 15:10:57 -08001475** These routines are useful during command-line input to determine if the
1476** currently entered text seems to form a complete SQL statement or
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001477** if additional input is needed before sending the text into
Vasu Noria4356a02010-01-20 15:10:57 -08001478** SQLite for parsing. ^These routines return 1 if the input string
1479** appears to be a complete SQL statement. ^A statement is judged to be
1480** complete if it ends with a semicolon token and is not a prefix of a
1481** well-formed CREATE TRIGGER statement. ^Semicolons that are embedded within
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001482** string literals or quoted identifier names or comments are not
1483** independent tokens (they are part of the token in which they are
Vasu Noria4356a02010-01-20 15:10:57 -08001484** embedded) and thus do not count as a statement terminator. ^Whitespace
1485** and comments that follow the final semicolon are ignored.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001486**
Vasu Noria4356a02010-01-20 15:10:57 -08001487** ^These routines return 0 if the statement is incomplete. ^If a
1488** memory allocation fails, then SQLITE_NOMEM is returned.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001489**
Vasu Noria4356a02010-01-20 15:10:57 -08001490** ^These routines do not parse the SQL statements thus
1491** will not detect syntactically incorrect SQL.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001492**
Vasu Noria4356a02010-01-20 15:10:57 -08001493** ^(If SQLite has not been initialized using [sqlite3_initialize()] prior
1494** to invoking sqlite3_complete16() then sqlite3_initialize() is invoked
1495** automatically by sqlite3_complete16(). If that initialization fails,
1496** then the return value from sqlite3_complete16() will be non-zero
1497** regardless of whether or not the input SQL is complete.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001498**
Vasu Noria4356a02010-01-20 15:10:57 -08001499** The input to [sqlite3_complete()] must be a zero-terminated
1500** UTF-8 string.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001501**
Vasu Noria4356a02010-01-20 15:10:57 -08001502** The input to [sqlite3_complete16()] must be a zero-terminated
1503** UTF-16 string in native byte order.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001504*/
Vasu Noria4356a02010-01-20 15:10:57 -08001505SQLITE_API int sqlite3_complete(const char *sql);
1506SQLITE_API int sqlite3_complete16(const void *sql);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001507
1508/*
Vasu Noria4356a02010-01-20 15:10:57 -08001509** CAPI3REF: Register A Callback To Handle SQLITE_BUSY Errors
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001510**
Vasu Noria4356a02010-01-20 15:10:57 -08001511** ^This routine sets a callback function that might be invoked whenever
1512** an attempt is made to open a database table that another thread
1513** or process has locked.
1514**
1515** ^If the busy callback is NULL, then [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED]
1516** is returned immediately upon encountering the lock. ^If the busy callback
1517** is not NULL, then the callback might be invoked with two arguments.
1518**
1519** ^The first argument to the busy handler is a copy of the void* pointer which
1520** is the third argument to sqlite3_busy_handler(). ^The second argument to
1521** the busy handler callback is the number of times that the busy handler has
1522** been invoked for this locking event. ^If the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001523** busy callback returns 0, then no additional attempts are made to
1524** access the database and [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED] is returned.
Vasu Noria4356a02010-01-20 15:10:57 -08001525** ^If the callback returns non-zero, then another attempt
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001526** is made to open the database for reading and the cycle repeats.
1527**
Vasu Noria4356a02010-01-20 15:10:57 -08001528** The presence of a busy handler does not guarantee that it will be invoked
1529** when there is lock contention. ^If SQLite determines that invoking the busy
1530** handler could result in a deadlock, it will go ahead and return [SQLITE_BUSY]
1531** or [SQLITE_IOERR_BLOCKED] instead of invoking the busy handler.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001532** Consider a scenario where one process is holding a read lock that
1533** it is trying to promote to a reserved lock and
1534** a second process is holding a reserved lock that it is trying
1535** to promote to an exclusive lock. The first process cannot proceed
1536** because it is blocked by the second and the second process cannot
1537** proceed because it is blocked by the first. If both processes
1538** invoke the busy handlers, neither will make any progress. Therefore,
1539** SQLite returns [SQLITE_BUSY] for the first process, hoping that this
1540** will induce the first process to release its read lock and allow
1541** the second process to proceed.
1542**
Vasu Noria4356a02010-01-20 15:10:57 -08001543** ^The default busy callback is NULL.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001544**
Vasu Noria4356a02010-01-20 15:10:57 -08001545** ^The [SQLITE_BUSY] error is converted to [SQLITE_IOERR_BLOCKED]
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001546** when SQLite is in the middle of a large transaction where all the
1547** changes will not fit into the in-memory cache. SQLite will
1548** already hold a RESERVED lock on the database file, but it needs
1549** to promote this lock to EXCLUSIVE so that it can spill cache
1550** pages into the database file without harm to concurrent
Vasu Noria4356a02010-01-20 15:10:57 -08001551** readers. ^If it is unable to promote the lock, then the in-memory
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001552** cache will be left in an inconsistent state and so the error
1553** code is promoted from the relatively benign [SQLITE_BUSY] to
Vasu Noria4356a02010-01-20 15:10:57 -08001554** the more severe [SQLITE_IOERR_BLOCKED]. ^This error code promotion
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001555** forces an automatic rollback of the changes. See the
Vasu Noria4356a02010-01-20 15:10:57 -08001556** <a href="/cvstrac/wiki?p=CorruptionFollowingBusyError">
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001557** CorruptionFollowingBusyError</a> wiki page for a discussion of why
1558** this is important.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001559**
Vasu Noria4356a02010-01-20 15:10:57 -08001560** ^(There can only be a single busy handler defined for each
1561** [database connection]. Setting a new busy handler clears any
1562** previously set handler.)^ ^Note that calling [sqlite3_busy_timeout()]
1563** will also set or clear the busy handler.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001564**
Vasu Noria4356a02010-01-20 15:10:57 -08001565** The busy callback should not take any actions which modify the
1566** database connection that invoked the busy handler. Any such actions
1567** result in undefined behavior.
1568**
1569** A busy handler must not close the database connection
1570** or [prepared statement] that invoked the busy handler.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001571*/
Vasu Noria4356a02010-01-20 15:10:57 -08001572SQLITE_API int sqlite3_busy_handler(sqlite3*, int(*)(void*,int), void*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001573
1574/*
Vasu Noria4356a02010-01-20 15:10:57 -08001575** CAPI3REF: Set A Busy Timeout
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001576**
Vasu Noria4356a02010-01-20 15:10:57 -08001577** ^This routine sets a [sqlite3_busy_handler | busy handler] that sleeps
1578** for a specified amount of time when a table is locked. ^The handler
1579** will sleep multiple times until at least "ms" milliseconds of sleeping
1580** have accumulated. ^After at least "ms" milliseconds of sleeping,
1581** the handler returns 0 which causes [sqlite3_step()] to return
1582** [SQLITE_BUSY] or [SQLITE_IOERR_BLOCKED].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001583**
Vasu Noria4356a02010-01-20 15:10:57 -08001584** ^Calling this routine with an argument less than or equal to zero
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001585** turns off all busy handlers.
1586**
Vasu Noria4356a02010-01-20 15:10:57 -08001587** ^(There can only be a single busy handler for a particular
1588** [database connection] any any given moment. If another busy handler
1589** was defined (using [sqlite3_busy_handler()]) prior to calling
1590** this routine, that other busy handler is cleared.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001591*/
Vasu Noria4356a02010-01-20 15:10:57 -08001592SQLITE_API int sqlite3_busy_timeout(sqlite3*, int ms);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001593
1594/*
Vasu Noria4356a02010-01-20 15:10:57 -08001595** CAPI3REF: Convenience Routines For Running Queries
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001596**
1597** Definition: A <b>result table</b> is memory data structure created by the
1598** [sqlite3_get_table()] interface. A result table records the
1599** complete query results from one or more queries.
1600**
1601** The table conceptually has a number of rows and columns. But
1602** these numbers are not part of the result table itself. These
1603** numbers are obtained separately. Let N be the number of rows
1604** and M be the number of columns.
1605**
Vasu Noria4356a02010-01-20 15:10:57 -08001606** A result table is an array of pointers to zero-terminated UTF-8 strings.
1607** There are (N+1)*M elements in the array. The first M pointers point
1608** to zero-terminated strings that contain the names of the columns.
1609** The remaining entries all point to query results. NULL values result
1610** in NULL pointers. All other values are in their UTF-8 zero-terminated
1611** string representation as returned by [sqlite3_column_text()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001612**
Vasu Noria4356a02010-01-20 15:10:57 -08001613** A result table might consist of one or more memory allocations.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001614** It is not safe to pass a result table directly to [sqlite3_free()].
1615** A result table should be deallocated using [sqlite3_free_table()].
1616**
1617** As an example of the result table format, suppose a query result
1618** is as follows:
1619**
1620** <blockquote><pre>
1621** Name | Age
1622** -----------------------
1623** Alice | 43
1624** Bob | 28
1625** Cindy | 21
1626** </pre></blockquote>
1627**
1628** There are two column (M==2) and three rows (N==3). Thus the
1629** result table has 8 entries. Suppose the result table is stored
1630** in an array names azResult. Then azResult holds this content:
1631**
1632** <blockquote><pre>
1633** azResult&#91;0] = "Name";
1634** azResult&#91;1] = "Age";
1635** azResult&#91;2] = "Alice";
1636** azResult&#91;3] = "43";
1637** azResult&#91;4] = "Bob";
1638** azResult&#91;5] = "28";
1639** azResult&#91;6] = "Cindy";
1640** azResult&#91;7] = "21";
1641** </pre></blockquote>
1642**
Vasu Noria4356a02010-01-20 15:10:57 -08001643** ^The sqlite3_get_table() function evaluates one or more
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001644** semicolon-separated SQL statements in the zero-terminated UTF-8
Vasu Noria4356a02010-01-20 15:10:57 -08001645** string of its 2nd parameter and returns a result table to the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001646** pointer given in its 3rd parameter.
1647**
Vasu Noria4356a02010-01-20 15:10:57 -08001648** After the application has finished with the result from sqlite3_get_table(),
1649** it should pass the result table pointer to sqlite3_free_table() in order to
1650** release the memory that was malloced. Because of the way the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001651** [sqlite3_malloc()] happens within sqlite3_get_table(), the calling
Vasu Noria4356a02010-01-20 15:10:57 -08001652** function must not try to call [sqlite3_free()] directly. Only
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001653** [sqlite3_free_table()] is able to release the memory properly and safely.
1654**
Vasu Noria4356a02010-01-20 15:10:57 -08001655** ^(The sqlite3_get_table() interface is implemented as a wrapper around
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001656** [sqlite3_exec()]. The sqlite3_get_table() routine does not have access
1657** to any internal data structures of SQLite. It uses only the public
1658** interface defined here. As a consequence, errors that occur in the
1659** wrapper layer outside of the internal [sqlite3_exec()] call are not
1660** reflected in subsequent calls to [sqlite3_errcode()] or
Vasu Noria4356a02010-01-20 15:10:57 -08001661** [sqlite3_errmsg()].)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001662*/
Vasu Noria4356a02010-01-20 15:10:57 -08001663SQLITE_API int sqlite3_get_table(
1664 sqlite3 *db, /* An open database */
1665 const char *zSql, /* SQL to be evaluated */
1666 char ***pazResult, /* Results of the query */
1667 int *pnRow, /* Number of result rows written here */
1668 int *pnColumn, /* Number of result columns written here */
1669 char **pzErrmsg /* Error msg written here */
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001670);
Vasu Noria4356a02010-01-20 15:10:57 -08001671SQLITE_API void sqlite3_free_table(char **result);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001672
1673/*
Vasu Noria4356a02010-01-20 15:10:57 -08001674** CAPI3REF: Formatted String Printing Functions
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001675**
Vasu Noria4356a02010-01-20 15:10:57 -08001676** These routines are work-alikes of the "printf()" family of functions
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001677** from the standard C library.
1678**
Vasu Noria4356a02010-01-20 15:10:57 -08001679** ^The sqlite3_mprintf() and sqlite3_vmprintf() routines write their
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001680** results into memory obtained from [sqlite3_malloc()].
1681** The strings returned by these two routines should be
Vasu Noria4356a02010-01-20 15:10:57 -08001682** released by [sqlite3_free()]. ^Both routines return a
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001683** NULL pointer if [sqlite3_malloc()] is unable to allocate enough
1684** memory to hold the resulting string.
1685**
Vasu Noria4356a02010-01-20 15:10:57 -08001686** ^(In sqlite3_snprintf() routine is similar to "snprintf()" from
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001687** the standard C library. The result is written into the
1688** buffer supplied as the second parameter whose size is given by
1689** the first parameter. Note that the order of the
Vasu Noria4356a02010-01-20 15:10:57 -08001690** first two parameters is reversed from snprintf().)^ This is an
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001691** historical accident that cannot be fixed without breaking
Vasu Noria4356a02010-01-20 15:10:57 -08001692** backwards compatibility. ^(Note also that sqlite3_snprintf()
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001693** returns a pointer to its buffer instead of the number of
Vasu Noria4356a02010-01-20 15:10:57 -08001694** characters actually written into the buffer.)^ We admit that
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001695** the number of characters written would be a more useful return
1696** value but we cannot change the implementation of sqlite3_snprintf()
1697** now without breaking compatibility.
1698**
Vasu Noria4356a02010-01-20 15:10:57 -08001699** ^As long as the buffer size is greater than zero, sqlite3_snprintf()
1700** guarantees that the buffer is always zero-terminated. ^The first
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001701** parameter "n" is the total size of the buffer, including space for
1702** the zero terminator. So the longest string that can be completely
1703** written will be n-1 characters.
1704**
1705** These routines all implement some additional formatting
1706** options that are useful for constructing SQL statements.
Vasu Noria4356a02010-01-20 15:10:57 -08001707** All of the usual printf() formatting options apply. In addition, there
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001708** is are "%q", "%Q", and "%z" options.
1709**
Vasu Noria4356a02010-01-20 15:10:57 -08001710** ^(The %q option works like %s in that it substitutes a null-terminated
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001711** string from the argument list. But %q also doubles every '\'' character.
Vasu Noria4356a02010-01-20 15:10:57 -08001712** %q is designed for use inside a string literal.)^ By doubling each '\''
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001713** character it escapes that character and allows it to be inserted into
1714** the string.
1715**
Vasu Noria4356a02010-01-20 15:10:57 -08001716** For example, assume the string variable zText contains text as follows:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001717**
1718** <blockquote><pre>
1719** char *zText = "It's a happy day!";
1720** </pre></blockquote>
1721**
1722** One can use this text in an SQL statement as follows:
1723**
1724** <blockquote><pre>
1725** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES('%q')", zText);
1726** sqlite3_exec(db, zSQL, 0, 0, 0);
1727** sqlite3_free(zSQL);
1728** </pre></blockquote>
1729**
1730** Because the %q format string is used, the '\'' character in zText
1731** is escaped and the SQL generated is as follows:
1732**
1733** <blockquote><pre>
1734** INSERT INTO table1 VALUES('It''s a happy day!')
1735** </pre></blockquote>
1736**
1737** This is correct. Had we used %s instead of %q, the generated SQL
1738** would have looked like this:
1739**
1740** <blockquote><pre>
1741** INSERT INTO table1 VALUES('It's a happy day!');
1742** </pre></blockquote>
1743**
Vasu Noria4356a02010-01-20 15:10:57 -08001744** This second example is an SQL syntax error. As a general rule you should
1745** always use %q instead of %s when inserting text into a string literal.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001746**
Vasu Noria4356a02010-01-20 15:10:57 -08001747** ^(The %Q option works like %q except it also adds single quotes around
1748** the outside of the total string. Additionally, if the parameter in the
1749** argument list is a NULL pointer, %Q substitutes the text "NULL" (without
1750** single quotes).)^ So, for example, one could say:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001751**
1752** <blockquote><pre>
1753** char *zSQL = sqlite3_mprintf("INSERT INTO table VALUES(%Q)", zText);
1754** sqlite3_exec(db, zSQL, 0, 0, 0);
1755** sqlite3_free(zSQL);
1756** </pre></blockquote>
1757**
1758** The code above will render a correct SQL statement in the zSQL
1759** variable even if the zText variable is a NULL pointer.
1760**
Vasu Noria4356a02010-01-20 15:10:57 -08001761** ^(The "%z" formatting option works like "%s" but with the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001762** addition that after the string has been read and copied into
Vasu Noria4356a02010-01-20 15:10:57 -08001763** the result, [sqlite3_free()] is called on the input string.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001764*/
Vasu Noria4356a02010-01-20 15:10:57 -08001765SQLITE_API char *sqlite3_mprintf(const char*,...);
1766SQLITE_API char *sqlite3_vmprintf(const char*, va_list);
1767SQLITE_API char *sqlite3_snprintf(int,char*,const char*, ...);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001768
1769/*
Vasu Noria4356a02010-01-20 15:10:57 -08001770** CAPI3REF: Memory Allocation Subsystem
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001771**
Vasu Noria4356a02010-01-20 15:10:57 -08001772** The SQLite core uses these three routines for all of its own
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001773** internal memory allocation needs. "Core" in the previous sentence
1774** does not include operating-system specific VFS implementation. The
Vasu Noria4356a02010-01-20 15:10:57 -08001775** Windows VFS uses native malloc() and free() for some operations.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001776**
Vasu Noria4356a02010-01-20 15:10:57 -08001777** ^The sqlite3_malloc() routine returns a pointer to a block
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001778** of memory at least N bytes in length, where N is the parameter.
Vasu Noria4356a02010-01-20 15:10:57 -08001779** ^If sqlite3_malloc() is unable to obtain sufficient free
1780** memory, it returns a NULL pointer. ^If the parameter N to
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001781** sqlite3_malloc() is zero or negative then sqlite3_malloc() returns
1782** a NULL pointer.
1783**
Vasu Noria4356a02010-01-20 15:10:57 -08001784** ^Calling sqlite3_free() with a pointer previously returned
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001785** by sqlite3_malloc() or sqlite3_realloc() releases that memory so
Vasu Noria4356a02010-01-20 15:10:57 -08001786** that it might be reused. ^The sqlite3_free() routine is
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001787** a no-op if is called with a NULL pointer. Passing a NULL pointer
1788** to sqlite3_free() is harmless. After being freed, memory
1789** should neither be read nor written. Even reading previously freed
1790** memory might result in a segmentation fault or other severe error.
1791** Memory corruption, a segmentation fault, or other severe error
1792** might result if sqlite3_free() is called with a non-NULL pointer that
Vasu Noria4356a02010-01-20 15:10:57 -08001793** was not obtained from sqlite3_malloc() or sqlite3_realloc().
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001794**
Vasu Noria4356a02010-01-20 15:10:57 -08001795** ^(The sqlite3_realloc() interface attempts to resize a
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001796** prior memory allocation to be at least N bytes, where N is the
1797** second parameter. The memory allocation to be resized is the first
Vasu Noria4356a02010-01-20 15:10:57 -08001798** parameter.)^ ^ If the first parameter to sqlite3_realloc()
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001799** is a NULL pointer then its behavior is identical to calling
1800** sqlite3_malloc(N) where N is the second parameter to sqlite3_realloc().
Vasu Noria4356a02010-01-20 15:10:57 -08001801** ^If the second parameter to sqlite3_realloc() is zero or
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001802** negative then the behavior is exactly the same as calling
1803** sqlite3_free(P) where P is the first parameter to sqlite3_realloc().
Vasu Noria4356a02010-01-20 15:10:57 -08001804** ^sqlite3_realloc() returns a pointer to a memory allocation
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001805** of at least N bytes in size or NULL if sufficient memory is unavailable.
Vasu Noria4356a02010-01-20 15:10:57 -08001806** ^If M is the size of the prior allocation, then min(N,M) bytes
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001807** of the prior allocation are copied into the beginning of buffer returned
1808** by sqlite3_realloc() and the prior allocation is freed.
Vasu Noria4356a02010-01-20 15:10:57 -08001809** ^If sqlite3_realloc() returns NULL, then the prior allocation
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001810** is not freed.
1811**
Vasu Noria4356a02010-01-20 15:10:57 -08001812** ^The memory returned by sqlite3_malloc() and sqlite3_realloc()
1813** is always aligned to at least an 8 byte boundary.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001814**
1815** In SQLite version 3.5.0 and 3.5.1, it was possible to define
1816** the SQLITE_OMIT_MEMORY_ALLOCATION which would cause the built-in
1817** implementation of these routines to be omitted. That capability
Vasu Noria4356a02010-01-20 15:10:57 -08001818** is no longer provided. Only built-in memory allocators can be used.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001819**
Vasu Noria4356a02010-01-20 15:10:57 -08001820** The Windows OS interface layer calls
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001821** the system malloc() and free() directly when converting
1822** filenames between the UTF-8 encoding used by SQLite
Vasu Noria4356a02010-01-20 15:10:57 -08001823** and whatever filename encoding is used by the particular Windows
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001824** installation. Memory allocation errors are detected, but
1825** they are reported back as [SQLITE_CANTOPEN] or
1826** [SQLITE_IOERR] rather than [SQLITE_NOMEM].
1827**
Vasu Noria4356a02010-01-20 15:10:57 -08001828** The pointer arguments to [sqlite3_free()] and [sqlite3_realloc()]
1829** must be either NULL or else pointers obtained from a prior
1830** invocation of [sqlite3_malloc()] or [sqlite3_realloc()] that have
1831** not yet been released.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001832**
Vasu Noria4356a02010-01-20 15:10:57 -08001833** The application must not read or write any part of
1834** a block of memory after it has been released using
1835** [sqlite3_free()] or [sqlite3_realloc()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001836*/
Vasu Noria4356a02010-01-20 15:10:57 -08001837SQLITE_API void *sqlite3_malloc(int);
1838SQLITE_API void *sqlite3_realloc(void*, int);
1839SQLITE_API void sqlite3_free(void*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001840
1841/*
Vasu Noria4356a02010-01-20 15:10:57 -08001842** CAPI3REF: Memory Allocator Statistics
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001843**
1844** SQLite provides these two interfaces for reporting on the status
1845** of the [sqlite3_malloc()], [sqlite3_free()], and [sqlite3_realloc()]
Vasu Noria4356a02010-01-20 15:10:57 -08001846** routines, which form the built-in memory allocation subsystem.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001847**
Vasu Noria4356a02010-01-20 15:10:57 -08001848** ^The [sqlite3_memory_used()] routine returns the number of bytes
1849** of memory currently outstanding (malloced but not freed).
1850** ^The [sqlite3_memory_highwater()] routine returns the maximum
1851** value of [sqlite3_memory_used()] since the high-water mark
1852** was last reset. ^The values returned by [sqlite3_memory_used()] and
1853** [sqlite3_memory_highwater()] include any overhead
1854** added by SQLite in its implementation of [sqlite3_malloc()],
1855** but not overhead added by the any underlying system library
1856** routines that [sqlite3_malloc()] may call.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001857**
Vasu Noria4356a02010-01-20 15:10:57 -08001858** ^The memory high-water mark is reset to the current value of
1859** [sqlite3_memory_used()] if and only if the parameter to
1860** [sqlite3_memory_highwater()] is true. ^The value returned
1861** by [sqlite3_memory_highwater(1)] is the high-water mark
1862** prior to the reset.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001863*/
Vasu Noria4356a02010-01-20 15:10:57 -08001864SQLITE_API sqlite3_int64 sqlite3_memory_used(void);
1865SQLITE_API sqlite3_int64 sqlite3_memory_highwater(int resetFlag);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001866
1867/*
Vasu Noria4356a02010-01-20 15:10:57 -08001868** CAPI3REF: Pseudo-Random Number Generator
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001869**
1870** SQLite contains a high-quality pseudo-random number generator (PRNG) used to
Vasu Noria4356a02010-01-20 15:10:57 -08001871** select random [ROWID | ROWIDs] when inserting new records into a table that
1872** already uses the largest possible [ROWID]. The PRNG is also used for
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001873** the build-in random() and randomblob() SQL functions. This interface allows
Vasu Noria4356a02010-01-20 15:10:57 -08001874** applications to access the same PRNG for other purposes.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001875**
Vasu Noria4356a02010-01-20 15:10:57 -08001876** ^A call to this routine stores N bytes of randomness into buffer P.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001877**
Vasu Noria4356a02010-01-20 15:10:57 -08001878** ^The first time this routine is invoked (either internally or by
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001879** the application) the PRNG is seeded using randomness obtained
1880** from the xRandomness method of the default [sqlite3_vfs] object.
Vasu Noria4356a02010-01-20 15:10:57 -08001881** ^On all subsequent invocations, the pseudo-randomness is generated
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001882** internally and without recourse to the [sqlite3_vfs] xRandomness
1883** method.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001884*/
Vasu Noria4356a02010-01-20 15:10:57 -08001885SQLITE_API void sqlite3_randomness(int N, void *P);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001886
1887/*
Vasu Noria4356a02010-01-20 15:10:57 -08001888** CAPI3REF: Compile-Time Authorization Callbacks
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001889**
Vasu Noria4356a02010-01-20 15:10:57 -08001890** ^This routine registers a authorizer callback with a particular
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001891** [database connection], supplied in the first argument.
Vasu Noria4356a02010-01-20 15:10:57 -08001892** ^The authorizer callback is invoked as SQL statements are being compiled
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001893** by [sqlite3_prepare()] or its variants [sqlite3_prepare_v2()],
Vasu Noria4356a02010-01-20 15:10:57 -08001894** [sqlite3_prepare16()] and [sqlite3_prepare16_v2()]. ^At various
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001895** points during the compilation process, as logic is being created
1896** to perform various actions, the authorizer callback is invoked to
Vasu Noria4356a02010-01-20 15:10:57 -08001897** see if those actions are allowed. ^The authorizer callback should
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001898** return [SQLITE_OK] to allow the action, [SQLITE_IGNORE] to disallow the
1899** specific action but allow the SQL statement to continue to be
1900** compiled, or [SQLITE_DENY] to cause the entire SQL statement to be
Vasu Noria4356a02010-01-20 15:10:57 -08001901** rejected with an error. ^If the authorizer callback returns
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001902** any value other than [SQLITE_IGNORE], [SQLITE_OK], or [SQLITE_DENY]
Vasu Noria4356a02010-01-20 15:10:57 -08001903** then the [sqlite3_prepare_v2()] or equivalent call that triggered
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001904** the authorizer will fail with an error message.
1905**
1906** When the callback returns [SQLITE_OK], that means the operation
Vasu Noria4356a02010-01-20 15:10:57 -08001907** requested is ok. ^When the callback returns [SQLITE_DENY], the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001908** [sqlite3_prepare_v2()] or equivalent call that triggered the
1909** authorizer will fail with an error message explaining that
Vasu Noria4356a02010-01-20 15:10:57 -08001910** access is denied.
1911**
1912** ^The first parameter to the authorizer callback is a copy of the third
1913** parameter to the sqlite3_set_authorizer() interface. ^The second parameter
1914** to the callback is an integer [SQLITE_COPY | action code] that specifies
1915** the particular action to be authorized. ^The third through sixth parameters
1916** to the callback are zero-terminated strings that contain additional
1917** details about the action to be authorized.
1918**
1919** ^If the action code is [SQLITE_READ]
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001920** and the callback returns [SQLITE_IGNORE] then the
1921** [prepared statement] statement is constructed to substitute
1922** a NULL value in place of the table column that would have
1923** been read if [SQLITE_OK] had been returned. The [SQLITE_IGNORE]
1924** return can be used to deny an untrusted user access to individual
1925** columns of a table.
Vasu Noria4356a02010-01-20 15:10:57 -08001926** ^If the action code is [SQLITE_DELETE] and the callback returns
1927** [SQLITE_IGNORE] then the [DELETE] operation proceeds but the
1928** [truncate optimization] is disabled and all rows are deleted individually.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001929**
1930** An authorizer is used when [sqlite3_prepare | preparing]
Vasu Noria4356a02010-01-20 15:10:57 -08001931** SQL statements from an untrusted source, to ensure that the SQL statements
1932** do not try to access data they are not allowed to see, or that they do not
1933** try to execute malicious statements that damage the database. For
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001934** example, an application may allow a user to enter arbitrary
1935** SQL queries for evaluation by a database. But the application does
1936** not want the user to be able to make arbitrary changes to the
1937** database. An authorizer could then be put in place while the
1938** user-entered SQL is being [sqlite3_prepare | prepared] that
1939** disallows everything except [SELECT] statements.
1940**
1941** Applications that need to process SQL from untrusted sources
1942** might also consider lowering resource limits using [sqlite3_limit()]
1943** and limiting database size using the [max_page_count] [PRAGMA]
1944** in addition to using an authorizer.
1945**
Vasu Noria4356a02010-01-20 15:10:57 -08001946** ^(Only a single authorizer can be in place on a database connection
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001947** at a time. Each call to sqlite3_set_authorizer overrides the
Vasu Noria4356a02010-01-20 15:10:57 -08001948** previous call.)^ ^Disable the authorizer by installing a NULL callback.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001949** The authorizer is disabled by default.
1950**
Vasu Noria4356a02010-01-20 15:10:57 -08001951** The authorizer callback must not do anything that will modify
1952** the database connection that invoked the authorizer callback.
1953** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
1954** database connections for the meaning of "modify" in this paragraph.
1955**
1956** ^When [sqlite3_prepare_v2()] is used to prepare a statement, the
1957** statement might be re-prepared during [sqlite3_step()] due to a
1958** schema change. Hence, the application should ensure that the
1959** correct authorizer callback remains in place during the [sqlite3_step()].
1960**
1961** ^Note that the authorizer callback is invoked only during
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001962** [sqlite3_prepare()] or its variants. Authorization is not
Vasu Noria4356a02010-01-20 15:10:57 -08001963** performed during statement evaluation in [sqlite3_step()], unless
1964** as stated in the previous paragraph, sqlite3_step() invokes
1965** sqlite3_prepare_v2() to reprepare a statement after a schema change.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001966*/
Vasu Noria4356a02010-01-20 15:10:57 -08001967SQLITE_API int sqlite3_set_authorizer(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001968 sqlite3*,
1969 int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
1970 void *pUserData
1971);
1972
1973/*
Vasu Noria4356a02010-01-20 15:10:57 -08001974** CAPI3REF: Authorizer Return Codes
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001975**
1976** The [sqlite3_set_authorizer | authorizer callback function] must
1977** return either [SQLITE_OK] or one of these two constants in order
1978** to signal SQLite whether or not the action is permitted. See the
1979** [sqlite3_set_authorizer | authorizer documentation] for additional
1980** information.
1981*/
1982#define SQLITE_DENY 1 /* Abort the SQL statement with an error */
1983#define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */
1984
1985/*
Vasu Noria4356a02010-01-20 15:10:57 -08001986** CAPI3REF: Authorizer Action Codes
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001987**
1988** The [sqlite3_set_authorizer()] interface registers a callback function
Vasu Noria4356a02010-01-20 15:10:57 -08001989** that is invoked to authorize certain SQL statement actions. The
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001990** second parameter to the callback is an integer code that specifies
1991** what action is being authorized. These are the integer action codes that
1992** the authorizer callback may be passed.
1993**
Vasu Noria4356a02010-01-20 15:10:57 -08001994** These action code values signify what kind of operation is to be
The Android Open Source Project7790ef52009-03-03 19:30:40 -08001995** authorized. The 3rd and 4th parameters to the authorization
1996** callback function will be parameters or NULL depending on which of these
Vasu Noria4356a02010-01-20 15:10:57 -08001997** codes is used as the second parameter. ^(The 5th parameter to the
1998** authorizer callback is the name of the database ("main", "temp",
1999** etc.) if applicable.)^ ^The 6th parameter to the authorizer callback
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002000** is the name of the inner-most trigger or view that is responsible for
Vasu Noria4356a02010-01-20 15:10:57 -08002001** the access attempt or NULL if this access attempt is directly from
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002002** top-level SQL code.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002003*/
2004/******************************************* 3rd ************ 4th ***********/
2005#define SQLITE_CREATE_INDEX 1 /* Index Name Table Name */
2006#define SQLITE_CREATE_TABLE 2 /* Table Name NULL */
2007#define SQLITE_CREATE_TEMP_INDEX 3 /* Index Name Table Name */
2008#define SQLITE_CREATE_TEMP_TABLE 4 /* Table Name NULL */
2009#define SQLITE_CREATE_TEMP_TRIGGER 5 /* Trigger Name Table Name */
2010#define SQLITE_CREATE_TEMP_VIEW 6 /* View Name NULL */
2011#define SQLITE_CREATE_TRIGGER 7 /* Trigger Name Table Name */
2012#define SQLITE_CREATE_VIEW 8 /* View Name NULL */
2013#define SQLITE_DELETE 9 /* Table Name NULL */
2014#define SQLITE_DROP_INDEX 10 /* Index Name Table Name */
2015#define SQLITE_DROP_TABLE 11 /* Table Name NULL */
2016#define SQLITE_DROP_TEMP_INDEX 12 /* Index Name Table Name */
2017#define SQLITE_DROP_TEMP_TABLE 13 /* Table Name NULL */
2018#define SQLITE_DROP_TEMP_TRIGGER 14 /* Trigger Name Table Name */
2019#define SQLITE_DROP_TEMP_VIEW 15 /* View Name NULL */
2020#define SQLITE_DROP_TRIGGER 16 /* Trigger Name Table Name */
2021#define SQLITE_DROP_VIEW 17 /* View Name NULL */
2022#define SQLITE_INSERT 18 /* Table Name NULL */
2023#define SQLITE_PRAGMA 19 /* Pragma Name 1st arg or NULL */
2024#define SQLITE_READ 20 /* Table Name Column Name */
2025#define SQLITE_SELECT 21 /* NULL NULL */
Vasu Noria4356a02010-01-20 15:10:57 -08002026#define SQLITE_TRANSACTION 22 /* Operation NULL */
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002027#define SQLITE_UPDATE 23 /* Table Name Column Name */
2028#define SQLITE_ATTACH 24 /* Filename NULL */
2029#define SQLITE_DETACH 25 /* Database Name NULL */
2030#define SQLITE_ALTER_TABLE 26 /* Database Name Table Name */
2031#define SQLITE_REINDEX 27 /* Index Name NULL */
2032#define SQLITE_ANALYZE 28 /* Table Name NULL */
2033#define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */
2034#define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */
Vasu Noria4356a02010-01-20 15:10:57 -08002035#define SQLITE_FUNCTION 31 /* NULL Function Name */
2036#define SQLITE_SAVEPOINT 32 /* Operation Savepoint Name */
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002037#define SQLITE_COPY 0 /* No longer used */
2038
2039/*
Vasu Noria4356a02010-01-20 15:10:57 -08002040** CAPI3REF: Tracing And Profiling Functions
2041** EXPERIMENTAL
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002042**
2043** These routines register callback functions that can be used for
2044** tracing and profiling the execution of SQL statements.
2045**
Vasu Noria4356a02010-01-20 15:10:57 -08002046** ^The callback function registered by sqlite3_trace() is invoked at
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002047** various times when an SQL statement is being run by [sqlite3_step()].
Vasu Noria4356a02010-01-20 15:10:57 -08002048** ^The sqlite3_trace() callback is invoked with a UTF-8 rendering of the
2049** SQL statement text as the statement first begins executing.
2050** ^(Additional sqlite3_trace() callbacks might occur
2051** as each triggered subprogram is entered. The callbacks for triggers
2052** contain a UTF-8 SQL comment that identifies the trigger.)^
2053**
2054** ^The callback function registered by sqlite3_profile() is invoked
2055** as each SQL statement finishes. ^The profile callback contains
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002056** the original statement text and an estimate of wall-clock time
2057** of how long that statement took to run.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002058*/
Vasu Noria4356a02010-01-20 15:10:57 -08002059SQLITE_API SQLITE_EXPERIMENTAL void *sqlite3_trace(sqlite3*, void(*xTrace)(void*,const char*), void*);
2060SQLITE_API SQLITE_EXPERIMENTAL void *sqlite3_profile(sqlite3*,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002061 void(*xProfile)(void*,const char*,sqlite3_uint64), void*);
2062
2063/*
Vasu Noria4356a02010-01-20 15:10:57 -08002064** CAPI3REF: Query Progress Callbacks
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002065**
Vasu Noria4356a02010-01-20 15:10:57 -08002066** ^This routine configures a callback function - the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002067** progress callback - that is invoked periodically during long
2068** running calls to [sqlite3_exec()], [sqlite3_step()] and
Vasu Noria4356a02010-01-20 15:10:57 -08002069** [sqlite3_get_table()]. An example use for this
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002070** interface is to keep a GUI updated during a large query.
2071**
Vasu Noria4356a02010-01-20 15:10:57 -08002072** ^If the progress callback returns non-zero, the operation is
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002073** interrupted. This feature can be used to implement a
Vasu Noria4356a02010-01-20 15:10:57 -08002074** "Cancel" button on a GUI progress dialog box.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002075**
Vasu Noria4356a02010-01-20 15:10:57 -08002076** The progress handler must not do anything that will modify
2077** the database connection that invoked the progress handler.
2078** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
2079** database connections for the meaning of "modify" in this paragraph.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002080**
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002081*/
Vasu Noria4356a02010-01-20 15:10:57 -08002082SQLITE_API void sqlite3_progress_handler(sqlite3*, int, int(*)(void*), void*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002083
2084/*
Vasu Noria4356a02010-01-20 15:10:57 -08002085** CAPI3REF: Opening A New Database Connection
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002086**
Vasu Noria4356a02010-01-20 15:10:57 -08002087** ^These routines open an SQLite database file whose name is given by the
2088** filename argument. ^The filename argument is interpreted as UTF-8 for
2089** sqlite3_open() and sqlite3_open_v2() and as UTF-16 in the native byte
2090** order for sqlite3_open16(). ^(A [database connection] handle is usually
2091** returned in *ppDb, even if an error occurs. The only exception is that
2092** if SQLite is unable to allocate memory to hold the [sqlite3] object,
2093** a NULL will be written into *ppDb instead of a pointer to the [sqlite3]
2094** object.)^ ^(If the database is opened (and/or created) successfully, then
2095** [SQLITE_OK] is returned. Otherwise an [error code] is returned.)^ ^The
2096** [sqlite3_errmsg()] or [sqlite3_errmsg16()] routines can be used to obtain
2097** an English language description of the error following a failure of any
2098** of the sqlite3_open() routines.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002099**
Vasu Noria4356a02010-01-20 15:10:57 -08002100** ^The default encoding for the database will be UTF-8 if
2101** sqlite3_open() or sqlite3_open_v2() is called and
2102** UTF-16 in the native byte order if sqlite3_open16() is used.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002103**
2104** Whether or not an error occurs when it is opened, resources
Vasu Noria4356a02010-01-20 15:10:57 -08002105** associated with the [database connection] handle should be released by
2106** passing it to [sqlite3_close()] when it is no longer required.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002107**
Vasu Noria4356a02010-01-20 15:10:57 -08002108** The sqlite3_open_v2() interface works like sqlite3_open()
2109** except that it accepts two additional parameters for additional control
2110** over the new database connection. ^(The flags parameter to
2111** sqlite3_open_v2() can take one of
2112** the following three values, optionally combined with the
2113** [SQLITE_OPEN_NOMUTEX], [SQLITE_OPEN_FULLMUTEX], [SQLITE_OPEN_SHAREDCACHE],
2114** and/or [SQLITE_OPEN_PRIVATECACHE] flags:)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002115**
Vasu Noria4356a02010-01-20 15:10:57 -08002116** <dl>
2117** ^(<dt>[SQLITE_OPEN_READONLY]</dt>
2118** <dd>The database is opened in read-only mode. If the database does not
2119** already exist, an error is returned.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002120**
Vasu Noria4356a02010-01-20 15:10:57 -08002121** ^(<dt>[SQLITE_OPEN_READWRITE]</dt>
2122** <dd>The database is opened for reading and writing if possible, or reading
2123** only if the file is write protected by the operating system. In either
2124** case the database must already exist, otherwise an error is returned.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002125**
Vasu Noria4356a02010-01-20 15:10:57 -08002126** ^(<dt>[SQLITE_OPEN_READWRITE] | [SQLITE_OPEN_CREATE]</dt>
2127** <dd>The database is opened for reading and writing, and is creates it if
2128** it does not already exist. This is the behavior that is always used for
2129** sqlite3_open() and sqlite3_open16().</dd>)^
2130** </dl>
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002131**
Vasu Noria4356a02010-01-20 15:10:57 -08002132** If the 3rd parameter to sqlite3_open_v2() is not one of the
2133** combinations shown above or one of the combinations shown above combined
2134** with the [SQLITE_OPEN_NOMUTEX], [SQLITE_OPEN_FULLMUTEX],
2135** [SQLITE_OPEN_SHAREDCACHE] and/or [SQLITE_OPEN_SHAREDCACHE] flags,
2136** then the behavior is undefined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002137**
Vasu Noria4356a02010-01-20 15:10:57 -08002138** ^If the [SQLITE_OPEN_NOMUTEX] flag is set, then the database connection
2139** opens in the multi-thread [threading mode] as long as the single-thread
2140** mode has not been set at compile-time or start-time. ^If the
2141** [SQLITE_OPEN_FULLMUTEX] flag is set then the database connection opens
2142** in the serialized [threading mode] unless single-thread was
2143** previously selected at compile-time or start-time.
2144** ^The [SQLITE_OPEN_SHAREDCACHE] flag causes the database connection to be
2145** eligible to use [shared cache mode], regardless of whether or not shared
2146** cache is enabled using [sqlite3_enable_shared_cache()]. ^The
2147** [SQLITE_OPEN_PRIVATECACHE] flag causes the database connection to not
2148** participate in [shared cache mode] even if it is enabled.
2149**
2150** ^If the filename is ":memory:", then a private, temporary in-memory database
2151** is created for the connection. ^This in-memory database will vanish when
2152** the database connection is closed. Future versions of SQLite might
2153** make use of additional special filenames that begin with the ":" character.
2154** It is recommended that when a database filename actually does begin with
2155** a ":" character you should prefix the filename with a pathname such as
2156** "./" to avoid ambiguity.
2157**
2158** ^If the filename is an empty string, then a private, temporary
2159** on-disk database will be created. ^This private database will be
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002160** automatically deleted as soon as the database connection is closed.
2161**
Vasu Noria4356a02010-01-20 15:10:57 -08002162** ^The fourth parameter to sqlite3_open_v2() is the name of the
2163** [sqlite3_vfs] object that defines the operating system interface that
2164** the new database connection should use. ^If the fourth parameter is
2165** a NULL pointer then the default [sqlite3_vfs] object is used.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002166**
Vasu Noria4356a02010-01-20 15:10:57 -08002167** <b>Note to Windows users:</b> The encoding used for the filename argument
2168** of sqlite3_open() and sqlite3_open_v2() must be UTF-8, not whatever
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002169** codepage is currently defined. Filenames containing international
2170** characters must be converted to UTF-8 prior to passing them into
Vasu Noria4356a02010-01-20 15:10:57 -08002171** sqlite3_open() or sqlite3_open_v2().
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002172*/
Vasu Noria4356a02010-01-20 15:10:57 -08002173SQLITE_API int sqlite3_open(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002174 const char *filename, /* Database filename (UTF-8) */
2175 sqlite3 **ppDb /* OUT: SQLite db handle */
2176);
Vasu Noria4356a02010-01-20 15:10:57 -08002177SQLITE_API int sqlite3_open16(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002178 const void *filename, /* Database filename (UTF-16) */
2179 sqlite3 **ppDb /* OUT: SQLite db handle */
2180);
Vasu Noria4356a02010-01-20 15:10:57 -08002181SQLITE_API int sqlite3_open_v2(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002182 const char *filename, /* Database filename (UTF-8) */
2183 sqlite3 **ppDb, /* OUT: SQLite db handle */
2184 int flags, /* Flags */
2185 const char *zVfs /* Name of VFS module to use */
2186);
2187
2188/*
Vasu Noria4356a02010-01-20 15:10:57 -08002189** CAPI3REF: Error Codes And Messages
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002190**
Vasu Noria4356a02010-01-20 15:10:57 -08002191** ^The sqlite3_errcode() interface returns the numeric [result code] or
2192** [extended result code] for the most recent failed sqlite3_* API call
2193** associated with a [database connection]. If a prior API call failed
2194** but the most recent API call succeeded, the return value from
2195** sqlite3_errcode() is undefined. ^The sqlite3_extended_errcode()
2196** interface is the same except that it always returns the
2197** [extended result code] even when extended result codes are
2198** disabled.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002199**
Vasu Noria4356a02010-01-20 15:10:57 -08002200** ^The sqlite3_errmsg() and sqlite3_errmsg16() return English-language
2201** text that describes the error, as either UTF-8 or UTF-16 respectively.
2202** ^(Memory to hold the error message string is managed internally.
2203** The application does not need to worry about freeing the result.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002204** However, the error string might be overwritten or deallocated by
Vasu Noria4356a02010-01-20 15:10:57 -08002205** subsequent calls to other SQLite interface functions.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002206**
Vasu Noria4356a02010-01-20 15:10:57 -08002207** When the serialized [threading mode] is in use, it might be the
2208** case that a second error occurs on a separate thread in between
2209** the time of the first error and the call to these interfaces.
2210** When that happens, the second error will be reported since these
2211** interfaces always report the most recent result. To avoid
2212** this, each thread can obtain exclusive use of the [database connection] D
2213** by invoking [sqlite3_mutex_enter]([sqlite3_db_mutex](D)) before beginning
2214** to use D and invoking [sqlite3_mutex_leave]([sqlite3_db_mutex](D)) after
2215** all calls to the interfaces listed here are completed.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002216**
Vasu Noria4356a02010-01-20 15:10:57 -08002217** If an interface fails with SQLITE_MISUSE, that means the interface
2218** was invoked incorrectly by the application. In that case, the
2219** error code and message may or may not be set.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002220*/
Vasu Noria4356a02010-01-20 15:10:57 -08002221SQLITE_API int sqlite3_errcode(sqlite3 *db);
2222SQLITE_API int sqlite3_extended_errcode(sqlite3 *db);
2223SQLITE_API const char *sqlite3_errmsg(sqlite3*);
2224SQLITE_API const void *sqlite3_errmsg16(sqlite3*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002225
2226/*
Vasu Noria4356a02010-01-20 15:10:57 -08002227** CAPI3REF: SQL Statement Object
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002228** KEYWORDS: {prepared statement} {prepared statements}
2229**
Vasu Noria4356a02010-01-20 15:10:57 -08002230** An instance of this object represents a single SQL statement.
2231** This object is variously known as a "prepared statement" or a
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002232** "compiled SQL statement" or simply as a "statement".
Vasu Noria4356a02010-01-20 15:10:57 -08002233**
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002234** The life of a statement object goes something like this:
2235**
2236** <ol>
2237** <li> Create the object using [sqlite3_prepare_v2()] or a related
2238** function.
Vasu Noria4356a02010-01-20 15:10:57 -08002239** <li> Bind values to [host parameters] using the sqlite3_bind_*()
2240** interfaces.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002241** <li> Run the SQL by calling [sqlite3_step()] one or more times.
2242** <li> Reset the statement using [sqlite3_reset()] then go back
2243** to step 2. Do this zero or more times.
2244** <li> Destroy the object using [sqlite3_finalize()].
2245** </ol>
2246**
2247** Refer to documentation on individual methods above for additional
2248** information.
2249*/
2250typedef struct sqlite3_stmt sqlite3_stmt;
2251
2252/*
Vasu Noria4356a02010-01-20 15:10:57 -08002253** CAPI3REF: Run-time Limits
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002254**
Vasu Noria4356a02010-01-20 15:10:57 -08002255** ^(This interface allows the size of various constructs to be limited
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002256** on a connection by connection basis. The first parameter is the
2257** [database connection] whose limit is to be set or queried. The
2258** second parameter is one of the [limit categories] that define a
2259** class of constructs to be size limited. The third parameter is the
Vasu Noria4356a02010-01-20 15:10:57 -08002260** new limit for that construct. The function returns the old limit.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002261**
Vasu Noria4356a02010-01-20 15:10:57 -08002262** ^If the new limit is a negative number, the limit is unchanged.
2263** ^(For the limit category of SQLITE_LIMIT_XYZ there is a
2264** [limits | hard upper bound]
2265** set by a compile-time C preprocessor macro named
2266** [limits | SQLITE_MAX_XYZ].
2267** (The "_LIMIT_" in the name is changed to "_MAX_".))^
2268** ^Attempts to increase a limit above its hard upper bound are
2269** silently truncated to the hard upper bound.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002270**
Vasu Noria4356a02010-01-20 15:10:57 -08002271** Run-time limits are intended for use in applications that manage
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002272** both their own internal database and also databases that are controlled
2273** by untrusted external sources. An example application might be a
Vasu Noria4356a02010-01-20 15:10:57 -08002274** web browser that has its own databases for storing history and
2275** separate databases controlled by JavaScript applications downloaded
2276** off the Internet. The internal databases can be given the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002277** large, default limits. Databases managed by external sources can
2278** be given much smaller limits designed to prevent a denial of service
Vasu Noria4356a02010-01-20 15:10:57 -08002279** attack. Developers might also want to use the [sqlite3_set_authorizer()]
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002280** interface to further control untrusted SQL. The size of the database
2281** created by an untrusted script can be contained using the
2282** [max_page_count] [PRAGMA].
2283**
Vasu Noria4356a02010-01-20 15:10:57 -08002284** New run-time limit categories may be added in future releases.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002285*/
Vasu Noria4356a02010-01-20 15:10:57 -08002286SQLITE_API int sqlite3_limit(sqlite3*, int id, int newVal);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002287
2288/*
Vasu Noria4356a02010-01-20 15:10:57 -08002289** CAPI3REF: Run-Time Limit Categories
2290** KEYWORDS: {limit category} {*limit categories}
2291**
2292** These constants define various performance limits
2293** that can be lowered at run-time using [sqlite3_limit()].
2294** The synopsis of the meanings of the various limits is shown below.
2295** Additional information is available at [limits | Limits in SQLite].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002296**
2297** <dl>
Vasu Noria4356a02010-01-20 15:10:57 -08002298** ^(<dt>SQLITE_LIMIT_LENGTH</dt>
2299** <dd>The maximum size of any string or BLOB or table row.<dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002300**
Vasu Noria4356a02010-01-20 15:10:57 -08002301** ^(<dt>SQLITE_LIMIT_SQL_LENGTH</dt>
2302** <dd>The maximum length of an SQL statement, in bytes.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002303**
Vasu Noria4356a02010-01-20 15:10:57 -08002304** ^(<dt>SQLITE_LIMIT_COLUMN</dt>
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002305** <dd>The maximum number of columns in a table definition or in the
Vasu Noria4356a02010-01-20 15:10:57 -08002306** result set of a [SELECT] or the maximum number of columns in an index
2307** or in an ORDER BY or GROUP BY clause.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002308**
Vasu Noria4356a02010-01-20 15:10:57 -08002309** ^(<dt>SQLITE_LIMIT_EXPR_DEPTH</dt>
2310** <dd>The maximum depth of the parse tree on any expression.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002311**
Vasu Noria4356a02010-01-20 15:10:57 -08002312** ^(<dt>SQLITE_LIMIT_COMPOUND_SELECT</dt>
2313** <dd>The maximum number of terms in a compound SELECT statement.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002314**
Vasu Noria4356a02010-01-20 15:10:57 -08002315** ^(<dt>SQLITE_LIMIT_VDBE_OP</dt>
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002316** <dd>The maximum number of instructions in a virtual machine program
Vasu Noria4356a02010-01-20 15:10:57 -08002317** used to implement an SQL statement.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002318**
Vasu Noria4356a02010-01-20 15:10:57 -08002319** ^(<dt>SQLITE_LIMIT_FUNCTION_ARG</dt>
2320** <dd>The maximum number of arguments on a function.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002321**
Vasu Noria4356a02010-01-20 15:10:57 -08002322** ^(<dt>SQLITE_LIMIT_ATTACHED</dt>
2323** <dd>The maximum number of [ATTACH | attached databases].)^</dd>
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002324**
Vasu Noria4356a02010-01-20 15:10:57 -08002325** ^(<dt>SQLITE_LIMIT_LIKE_PATTERN_LENGTH</dt>
2326** <dd>The maximum length of the pattern argument to the [LIKE] or
2327** [GLOB] operators.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002328**
Vasu Noria4356a02010-01-20 15:10:57 -08002329** ^(<dt>SQLITE_LIMIT_VARIABLE_NUMBER</dt>
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002330** <dd>The maximum number of variables in an SQL statement that can
Vasu Noria4356a02010-01-20 15:10:57 -08002331** be bound.</dd>)^
2332**
2333** ^(<dt>SQLITE_LIMIT_TRIGGER_DEPTH</dt>
2334** <dd>The maximum depth of recursion for triggers.</dd>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002335** </dl>
2336*/
2337#define SQLITE_LIMIT_LENGTH 0
2338#define SQLITE_LIMIT_SQL_LENGTH 1
2339#define SQLITE_LIMIT_COLUMN 2
2340#define SQLITE_LIMIT_EXPR_DEPTH 3
2341#define SQLITE_LIMIT_COMPOUND_SELECT 4
2342#define SQLITE_LIMIT_VDBE_OP 5
2343#define SQLITE_LIMIT_FUNCTION_ARG 6
2344#define SQLITE_LIMIT_ATTACHED 7
2345#define SQLITE_LIMIT_LIKE_PATTERN_LENGTH 8
2346#define SQLITE_LIMIT_VARIABLE_NUMBER 9
Vasu Noria4356a02010-01-20 15:10:57 -08002347#define SQLITE_LIMIT_TRIGGER_DEPTH 10
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002348
2349/*
Vasu Noria4356a02010-01-20 15:10:57 -08002350** CAPI3REF: Compiling An SQL Statement
2351** KEYWORDS: {SQL statement compiler}
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002352**
2353** To execute an SQL query, it must first be compiled into a byte-code
Vasu Noria4356a02010-01-20 15:10:57 -08002354** program using one of these routines.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002355**
Vasu Noria4356a02010-01-20 15:10:57 -08002356** The first argument, "db", is a [database connection] obtained from a
2357** prior successful call to [sqlite3_open()], [sqlite3_open_v2()] or
2358** [sqlite3_open16()]. The database connection must not have been closed.
2359**
2360** The second argument, "zSql", is the statement to be compiled, encoded
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002361** as either UTF-8 or UTF-16. The sqlite3_prepare() and sqlite3_prepare_v2()
Vasu Noria4356a02010-01-20 15:10:57 -08002362** interfaces use UTF-8, and sqlite3_prepare16() and sqlite3_prepare16_v2()
2363** use UTF-16.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002364**
Vasu Noria4356a02010-01-20 15:10:57 -08002365** ^If the nByte argument is less than zero, then zSql is read up to the
2366** first zero terminator. ^If nByte is non-negative, then it is the maximum
2367** number of bytes read from zSql. ^When nByte is non-negative, the
2368** zSql string ends at either the first '\000' or '\u0000' character or
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002369** the nByte-th byte, whichever comes first. If the caller knows
2370** that the supplied string is nul-terminated, then there is a small
Vasu Noria4356a02010-01-20 15:10:57 -08002371** performance advantage to be gained by passing an nByte parameter that
2372** is equal to the number of bytes in the input string <i>including</i>
2373** the nul-terminator bytes.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002374**
Vasu Noria4356a02010-01-20 15:10:57 -08002375** ^If pzTail is not NULL then *pzTail is made to point to the first byte
2376** past the end of the first SQL statement in zSql. These routines only
2377** compile the first statement in zSql, so *pzTail is left pointing to
2378** what remains uncompiled.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002379**
Vasu Noria4356a02010-01-20 15:10:57 -08002380** ^*ppStmt is left pointing to a compiled [prepared statement] that can be
2381** executed using [sqlite3_step()]. ^If there is an error, *ppStmt is set
2382** to NULL. ^If the input text contains no SQL (if the input is an empty
2383** string or a comment) then *ppStmt is set to NULL.
2384** The calling procedure is responsible for deleting the compiled
2385** SQL statement using [sqlite3_finalize()] after it has finished with it.
2386** ppStmt may not be NULL.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002387**
Vasu Noria4356a02010-01-20 15:10:57 -08002388** ^On success, the sqlite3_prepare() family of routines return [SQLITE_OK];
2389** otherwise an [error code] is returned.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002390**
2391** The sqlite3_prepare_v2() and sqlite3_prepare16_v2() interfaces are
2392** recommended for all new programs. The two older interfaces are retained
2393** for backwards compatibility, but their use is discouraged.
Vasu Noria4356a02010-01-20 15:10:57 -08002394** ^In the "v2" interfaces, the prepared statement
2395** that is returned (the [sqlite3_stmt] object) contains a copy of the
2396** original SQL text. This causes the [sqlite3_step()] interface to
2397** behave differently in three ways:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002398**
2399** <ol>
2400** <li>
Vasu Noria4356a02010-01-20 15:10:57 -08002401** ^If the database schema changes, instead of returning [SQLITE_SCHEMA] as it
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002402** always used to do, [sqlite3_step()] will automatically recompile the SQL
Vasu Noria4356a02010-01-20 15:10:57 -08002403** statement and try to run it again. ^If the schema has changed in
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002404** a way that makes the statement no longer valid, [sqlite3_step()] will still
Vasu Noria4356a02010-01-20 15:10:57 -08002405** return [SQLITE_SCHEMA]. But unlike the legacy behavior, [SQLITE_SCHEMA] is
2406** now a fatal error. Calling [sqlite3_prepare_v2()] again will not make the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002407** error go away. Note: use [sqlite3_errmsg()] to find the text
Vasu Noria4356a02010-01-20 15:10:57 -08002408** of the parsing error that results in an [SQLITE_SCHEMA] return.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002409** </li>
2410**
2411** <li>
Vasu Noria4356a02010-01-20 15:10:57 -08002412** ^When an error occurs, [sqlite3_step()] will return one of the detailed
2413** [error codes] or [extended error codes]. ^The legacy behavior was that
2414** [sqlite3_step()] would only return a generic [SQLITE_ERROR] result code
2415** and the application would have to make a second call to [sqlite3_reset()]
2416** in order to find the underlying cause of the problem. With the "v2" prepare
2417** interfaces, the underlying reason for the error is returned immediately.
2418** </li>
2419**
2420** <li>
2421** ^If the value of a [parameter | host parameter] in the WHERE clause might
2422** change the query plan for a statement, then the statement may be
2423** automatically recompiled (as if there had been a schema change) on the first
2424** [sqlite3_step()] call following any change to the
2425** [sqlite3_bind_text | bindings] of the [parameter].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002426** </li>
2427** </ol>
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002428*/
Vasu Noria4356a02010-01-20 15:10:57 -08002429SQLITE_API int sqlite3_prepare(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002430 sqlite3 *db, /* Database handle */
2431 const char *zSql, /* SQL statement, UTF-8 encoded */
2432 int nByte, /* Maximum length of zSql in bytes. */
2433 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2434 const char **pzTail /* OUT: Pointer to unused portion of zSql */
2435);
Vasu Noria4356a02010-01-20 15:10:57 -08002436SQLITE_API int sqlite3_prepare_v2(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002437 sqlite3 *db, /* Database handle */
2438 const char *zSql, /* SQL statement, UTF-8 encoded */
2439 int nByte, /* Maximum length of zSql in bytes. */
2440 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2441 const char **pzTail /* OUT: Pointer to unused portion of zSql */
2442);
Vasu Noria4356a02010-01-20 15:10:57 -08002443SQLITE_API int sqlite3_prepare16(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002444 sqlite3 *db, /* Database handle */
2445 const void *zSql, /* SQL statement, UTF-16 encoded */
2446 int nByte, /* Maximum length of zSql in bytes. */
2447 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2448 const void **pzTail /* OUT: Pointer to unused portion of zSql */
2449);
Vasu Noria4356a02010-01-20 15:10:57 -08002450SQLITE_API int sqlite3_prepare16_v2(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002451 sqlite3 *db, /* Database handle */
2452 const void *zSql, /* SQL statement, UTF-16 encoded */
2453 int nByte, /* Maximum length of zSql in bytes. */
2454 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
2455 const void **pzTail /* OUT: Pointer to unused portion of zSql */
2456);
2457
2458/*
Vasu Noria4356a02010-01-20 15:10:57 -08002459** CAPI3REF: Retrieving Statement SQL
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002460**
Vasu Noria4356a02010-01-20 15:10:57 -08002461** ^This interface can be used to retrieve a saved copy of the original
2462** SQL text used to create a [prepared statement] if that statement was
2463** compiled using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002464*/
Vasu Noria4356a02010-01-20 15:10:57 -08002465SQLITE_API const char *sqlite3_sql(sqlite3_stmt *pStmt);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002466
2467/*
Vasu Noria4356a02010-01-20 15:10:57 -08002468** CAPI3REF: Dynamically Typed Value Object
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002469** KEYWORDS: {protected sqlite3_value} {unprotected sqlite3_value}
2470**
2471** SQLite uses the sqlite3_value object to represent all values
Vasu Noria4356a02010-01-20 15:10:57 -08002472** that can be stored in a database table. SQLite uses dynamic typing
2473** for the values it stores. ^Values stored in sqlite3_value objects
2474** can be integers, floating point values, strings, BLOBs, or NULL.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002475**
2476** An sqlite3_value object may be either "protected" or "unprotected".
2477** Some interfaces require a protected sqlite3_value. Other interfaces
2478** will accept either a protected or an unprotected sqlite3_value.
Vasu Noria4356a02010-01-20 15:10:57 -08002479** Every interface that accepts sqlite3_value arguments specifies
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002480** whether or not it requires a protected sqlite3_value.
2481**
2482** The terms "protected" and "unprotected" refer to whether or not
2483** a mutex is held. A internal mutex is held for a protected
2484** sqlite3_value object but no mutex is held for an unprotected
2485** sqlite3_value object. If SQLite is compiled to be single-threaded
Vasu Noria4356a02010-01-20 15:10:57 -08002486** (with [SQLITE_THREADSAFE=0] and with [sqlite3_threadsafe()] returning 0)
2487** or if SQLite is run in one of reduced mutex modes
2488** [SQLITE_CONFIG_SINGLETHREAD] or [SQLITE_CONFIG_MULTITHREAD]
2489** then there is no distinction between protected and unprotected
2490** sqlite3_value objects and they can be used interchangeably. However,
2491** for maximum code portability it is recommended that applications
2492** still make the distinction between between protected and unprotected
2493** sqlite3_value objects even when not strictly required.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002494**
Vasu Noria4356a02010-01-20 15:10:57 -08002495** ^The sqlite3_value objects that are passed as parameters into the
2496** implementation of [application-defined SQL functions] are protected.
2497** ^The sqlite3_value object returned by
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002498** [sqlite3_column_value()] is unprotected.
2499** Unprotected sqlite3_value objects may only be used with
Vasu Noria4356a02010-01-20 15:10:57 -08002500** [sqlite3_result_value()] and [sqlite3_bind_value()].
2501** The [sqlite3_value_blob | sqlite3_value_type()] family of
2502** interfaces require protected sqlite3_value objects.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002503*/
2504typedef struct Mem sqlite3_value;
2505
2506/*
Vasu Noria4356a02010-01-20 15:10:57 -08002507** CAPI3REF: SQL Function Context Object
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002508**
2509** The context in which an SQL function executes is stored in an
Vasu Noria4356a02010-01-20 15:10:57 -08002510** sqlite3_context object. ^A pointer to an sqlite3_context object
2511** is always first parameter to [application-defined SQL functions].
2512** The application-defined SQL function implementation will pass this
2513** pointer through into calls to [sqlite3_result_int | sqlite3_result()],
2514** [sqlite3_aggregate_context()], [sqlite3_user_data()],
2515** [sqlite3_context_db_handle()], [sqlite3_get_auxdata()],
2516** and/or [sqlite3_set_auxdata()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002517*/
2518typedef struct sqlite3_context sqlite3_context;
2519
2520/*
Vasu Noria4356a02010-01-20 15:10:57 -08002521** CAPI3REF: Binding Values To Prepared Statements
2522** KEYWORDS: {host parameter} {host parameters} {host parameter name}
2523** KEYWORDS: {SQL parameter} {SQL parameters} {parameter binding}
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002524**
Vasu Noria4356a02010-01-20 15:10:57 -08002525** ^(In the SQL statement text input to [sqlite3_prepare_v2()] and its variants,
2526** literals may be replaced by a [parameter] that matches one of following
2527** templates:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002528**
2529** <ul>
2530** <li> ?
2531** <li> ?NNN
2532** <li> :VVV
2533** <li> @VVV
2534** <li> $VVV
2535** </ul>
2536**
Vasu Noria4356a02010-01-20 15:10:57 -08002537** In the templates above, NNN represents an integer literal,
2538** and VVV represents an alphanumeric identifer.)^ ^The values of these
2539** parameters (also called "host parameter names" or "SQL parameters")
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002540** can be set using the sqlite3_bind_*() routines defined here.
2541**
Vasu Noria4356a02010-01-20 15:10:57 -08002542** ^The first argument to the sqlite3_bind_*() routines is always
2543** a pointer to the [sqlite3_stmt] object returned from
2544** [sqlite3_prepare_v2()] or its variants.
2545**
2546** ^The second argument is the index of the SQL parameter to be set.
2547** ^The leftmost SQL parameter has an index of 1. ^When the same named
2548** SQL parameter is used more than once, second and subsequent
2549** occurrences have the same index as the first occurrence.
2550** ^The index for named parameters can be looked up using the
2551** [sqlite3_bind_parameter_index()] API if desired. ^The index
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002552** for "?NNN" parameters is the value of NNN.
Vasu Noria4356a02010-01-20 15:10:57 -08002553** ^The NNN value must be between 1 and the [sqlite3_limit()]
2554** parameter [SQLITE_LIMIT_VARIABLE_NUMBER] (default value: 999).
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002555**
Vasu Noria4356a02010-01-20 15:10:57 -08002556** ^The third argument is the value to bind to the parameter.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002557**
Vasu Noria4356a02010-01-20 15:10:57 -08002558** ^(In those routines that have a fourth argument, its value is the
2559** number of bytes in the parameter. To be clear: the value is the
2560** number of <u>bytes</u> in the value, not the number of characters.)^
2561** ^If the fourth parameter is negative, the length of the string is
2562** the number of bytes up to the first zero terminator.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002563**
Vasu Noria4356a02010-01-20 15:10:57 -08002564** ^The fifth argument to sqlite3_bind_blob(), sqlite3_bind_text(), and
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002565** sqlite3_bind_text16() is a destructor used to dispose of the BLOB or
Vasu Noria4356a02010-01-20 15:10:57 -08002566** string after SQLite has finished with it. ^If the fifth argument is
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002567** the special value [SQLITE_STATIC], then SQLite assumes that the
2568** information is in static, unmanaged space and does not need to be freed.
Vasu Noria4356a02010-01-20 15:10:57 -08002569** ^If the fifth argument has the value [SQLITE_TRANSIENT], then
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002570** SQLite makes its own private copy of the data immediately, before
2571** the sqlite3_bind_*() routine returns.
2572**
Vasu Noria4356a02010-01-20 15:10:57 -08002573** ^The sqlite3_bind_zeroblob() routine binds a BLOB of length N that
2574** is filled with zeroes. ^A zeroblob uses a fixed amount of memory
2575** (just an integer to hold its size) while it is being processed.
2576** Zeroblobs are intended to serve as placeholders for BLOBs whose
2577** content is later written using
2578** [sqlite3_blob_open | incremental BLOB I/O] routines.
2579** ^A negative value for the zeroblob results in a zero-length BLOB.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002580**
Vasu Noria4356a02010-01-20 15:10:57 -08002581** ^If any of the sqlite3_bind_*() routines are called with a NULL pointer
2582** for the [prepared statement] or with a prepared statement for which
2583** [sqlite3_step()] has been called more recently than [sqlite3_reset()],
2584** then the call will return [SQLITE_MISUSE]. If any sqlite3_bind_()
2585** routine is passed a [prepared statement] that has been finalized, the
2586** result is undefined and probably harmful.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002587**
Vasu Noria4356a02010-01-20 15:10:57 -08002588** ^Bindings are not cleared by the [sqlite3_reset()] routine.
2589** ^Unbound parameters are interpreted as NULL.
2590**
2591** ^The sqlite3_bind_* routines return [SQLITE_OK] on success or an
2592** [error code] if anything goes wrong.
2593** ^[SQLITE_RANGE] is returned if the parameter
2594** index is out of range. ^[SQLITE_NOMEM] is returned if malloc() fails.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002595**
2596** See also: [sqlite3_bind_parameter_count()],
Vasu Noria4356a02010-01-20 15:10:57 -08002597** [sqlite3_bind_parameter_name()], and [sqlite3_bind_parameter_index()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002598*/
Vasu Noria4356a02010-01-20 15:10:57 -08002599SQLITE_API int sqlite3_bind_blob(sqlite3_stmt*, int, const void*, int n, void(*)(void*));
2600SQLITE_API int sqlite3_bind_double(sqlite3_stmt*, int, double);
2601SQLITE_API int sqlite3_bind_int(sqlite3_stmt*, int, int);
2602SQLITE_API int sqlite3_bind_int64(sqlite3_stmt*, int, sqlite3_int64);
2603SQLITE_API int sqlite3_bind_null(sqlite3_stmt*, int);
2604SQLITE_API int sqlite3_bind_text(sqlite3_stmt*, int, const char*, int n, void(*)(void*));
2605SQLITE_API int sqlite3_bind_text16(sqlite3_stmt*, int, const void*, int, void(*)(void*));
2606SQLITE_API int sqlite3_bind_value(sqlite3_stmt*, int, const sqlite3_value*);
2607SQLITE_API int sqlite3_bind_zeroblob(sqlite3_stmt*, int, int n);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002608
2609/*
Vasu Noria4356a02010-01-20 15:10:57 -08002610** CAPI3REF: Number Of SQL Parameters
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002611**
Vasu Noria4356a02010-01-20 15:10:57 -08002612** ^This routine can be used to find the number of [SQL parameters]
2613** in a [prepared statement]. SQL parameters are tokens of the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002614** form "?", "?NNN", ":AAA", "$AAA", or "@AAA" that serve as
Vasu Noria4356a02010-01-20 15:10:57 -08002615** placeholders for values that are [sqlite3_bind_blob | bound]
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002616** to the parameters at a later time.
2617**
Vasu Noria4356a02010-01-20 15:10:57 -08002618** ^(This routine actually returns the index of the largest (rightmost)
2619** parameter. For all forms except ?NNN, this will correspond to the
2620** number of unique parameters. If parameters of the ?NNN form are used,
2621** there may be gaps in the list.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002622**
2623** See also: [sqlite3_bind_blob|sqlite3_bind()],
2624** [sqlite3_bind_parameter_name()], and
2625** [sqlite3_bind_parameter_index()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002626*/
Vasu Noria4356a02010-01-20 15:10:57 -08002627SQLITE_API int sqlite3_bind_parameter_count(sqlite3_stmt*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002628
2629/*
Vasu Noria4356a02010-01-20 15:10:57 -08002630** CAPI3REF: Name Of A Host Parameter
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002631**
Vasu Noria4356a02010-01-20 15:10:57 -08002632** ^The sqlite3_bind_parameter_name(P,N) interface returns
2633** the name of the N-th [SQL parameter] in the [prepared statement] P.
2634** ^(SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA"
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002635** have a name which is the string "?NNN" or ":AAA" or "@AAA" or "$AAA"
2636** respectively.
2637** In other words, the initial ":" or "$" or "@" or "?"
Vasu Noria4356a02010-01-20 15:10:57 -08002638** is included as part of the name.)^
2639** ^Parameters of the form "?" without a following integer have no name
2640** and are referred to as "nameless" or "anonymous parameters".
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002641**
Vasu Noria4356a02010-01-20 15:10:57 -08002642** ^The first host parameter has an index of 1, not 0.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002643**
Vasu Noria4356a02010-01-20 15:10:57 -08002644** ^If the value N is out of range or if the N-th parameter is
2645** nameless, then NULL is returned. ^The returned string is
2646** always in UTF-8 encoding even if the named parameter was
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002647** originally specified as UTF-16 in [sqlite3_prepare16()] or
2648** [sqlite3_prepare16_v2()].
2649**
2650** See also: [sqlite3_bind_blob|sqlite3_bind()],
2651** [sqlite3_bind_parameter_count()], and
2652** [sqlite3_bind_parameter_index()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002653*/
Vasu Noria4356a02010-01-20 15:10:57 -08002654SQLITE_API const char *sqlite3_bind_parameter_name(sqlite3_stmt*, int);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002655
2656/*
Vasu Noria4356a02010-01-20 15:10:57 -08002657** CAPI3REF: Index Of A Parameter With A Given Name
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002658**
Vasu Noria4356a02010-01-20 15:10:57 -08002659** ^Return the index of an SQL parameter given its name. ^The
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002660** index value returned is suitable for use as the second
Vasu Noria4356a02010-01-20 15:10:57 -08002661** parameter to [sqlite3_bind_blob|sqlite3_bind()]. ^A zero
2662** is returned if no matching parameter is found. ^The parameter
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002663** name must be given in UTF-8 even if the original statement
2664** was prepared from UTF-16 text using [sqlite3_prepare16_v2()].
2665**
2666** See also: [sqlite3_bind_blob|sqlite3_bind()],
2667** [sqlite3_bind_parameter_count()], and
2668** [sqlite3_bind_parameter_index()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002669*/
Vasu Noria4356a02010-01-20 15:10:57 -08002670SQLITE_API int sqlite3_bind_parameter_index(sqlite3_stmt*, const char *zName);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002671
2672/*
Vasu Noria4356a02010-01-20 15:10:57 -08002673** CAPI3REF: Reset All Bindings On A Prepared Statement
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002674**
Vasu Noria4356a02010-01-20 15:10:57 -08002675** ^Contrary to the intuition of many, [sqlite3_reset()] does not reset
2676** the [sqlite3_bind_blob | bindings] on a [prepared statement].
2677** ^Use this routine to reset all host parameters to NULL.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002678*/
Vasu Noria4356a02010-01-20 15:10:57 -08002679SQLITE_API int sqlite3_clear_bindings(sqlite3_stmt*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002680
2681/*
Vasu Noria4356a02010-01-20 15:10:57 -08002682** CAPI3REF: Number Of Columns In A Result Set
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002683**
Vasu Noria4356a02010-01-20 15:10:57 -08002684** ^Return the number of columns in the result set returned by the
2685** [prepared statement]. ^This routine returns 0 if pStmt is an SQL
2686** statement that does not return data (for example an [UPDATE]).
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002687*/
Vasu Noria4356a02010-01-20 15:10:57 -08002688SQLITE_API int sqlite3_column_count(sqlite3_stmt *pStmt);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002689
2690/*
Vasu Noria4356a02010-01-20 15:10:57 -08002691** CAPI3REF: Column Names In A Result Set
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002692**
Vasu Noria4356a02010-01-20 15:10:57 -08002693** ^These routines return the name assigned to a particular column
2694** in the result set of a [SELECT] statement. ^The sqlite3_column_name()
2695** interface returns a pointer to a zero-terminated UTF-8 string
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002696** and sqlite3_column_name16() returns a pointer to a zero-terminated
Vasu Noria4356a02010-01-20 15:10:57 -08002697** UTF-16 string. ^The first parameter is the [prepared statement]
2698** that implements the [SELECT] statement. ^The second parameter is the
2699** column number. ^The leftmost column is number 0.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002700**
Vasu Noria4356a02010-01-20 15:10:57 -08002701** ^The returned string pointer is valid until either the [prepared statement]
2702** is destroyed by [sqlite3_finalize()] or until the next call to
2703** sqlite3_column_name() or sqlite3_column_name16() on the same column.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002704**
Vasu Noria4356a02010-01-20 15:10:57 -08002705** ^If sqlite3_malloc() fails during the processing of either routine
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002706** (for example during a conversion from UTF-8 to UTF-16) then a
2707** NULL pointer is returned.
2708**
Vasu Noria4356a02010-01-20 15:10:57 -08002709** ^The name of a result column is the value of the "AS" clause for
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002710** that column, if there is an AS clause. If there is no AS clause
2711** then the name of the column is unspecified and may change from
2712** one release of SQLite to the next.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002713*/
Vasu Noria4356a02010-01-20 15:10:57 -08002714SQLITE_API const char *sqlite3_column_name(sqlite3_stmt*, int N);
2715SQLITE_API const void *sqlite3_column_name16(sqlite3_stmt*, int N);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002716
2717/*
Vasu Noria4356a02010-01-20 15:10:57 -08002718** CAPI3REF: Source Of Data In A Query Result
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002719**
Vasu Noria4356a02010-01-20 15:10:57 -08002720** ^These routines provide a means to determine the database, table, and
2721** table column that is the origin of a particular result column in
2722** [SELECT] statement.
2723** ^The name of the database or table or column can be returned as
2724** either a UTF-8 or UTF-16 string. ^The _database_ routines return
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002725** the database name, the _table_ routines return the table name, and
2726** the origin_ routines return the column name.
Vasu Noria4356a02010-01-20 15:10:57 -08002727** ^The returned string is valid until the [prepared statement] is destroyed
2728** using [sqlite3_finalize()] or until the same information is requested
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002729** again in a different encoding.
2730**
Vasu Noria4356a02010-01-20 15:10:57 -08002731** ^The names returned are the original un-aliased names of the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002732** database, table, and column.
2733**
Vasu Noria4356a02010-01-20 15:10:57 -08002734** ^The first argument to these interfaces is a [prepared statement].
2735** ^These functions return information about the Nth result column returned by
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002736** the statement, where N is the second function argument.
Vasu Noria4356a02010-01-20 15:10:57 -08002737** ^The left-most column is column 0 for these routines.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002738**
Vasu Noria4356a02010-01-20 15:10:57 -08002739** ^If the Nth column returned by the statement is an expression or
2740** subquery and is not a column value, then all of these functions return
2741** NULL. ^These routine might also return NULL if a memory allocation error
2742** occurs. ^Otherwise, they return the name of the attached database, table,
2743** or column that query result column was extracted from.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002744**
Vasu Noria4356a02010-01-20 15:10:57 -08002745** ^As with all other SQLite APIs, those whose names end with "16" return
2746** UTF-16 encoded strings and the other functions return UTF-8.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002747**
Vasu Noria4356a02010-01-20 15:10:57 -08002748** ^These APIs are only available if the library was compiled with the
2749** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002750**
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002751** If two or more threads call one or more of these routines against the same
2752** prepared statement and column at the same time then the results are
2753** undefined.
2754**
Vasu Noria4356a02010-01-20 15:10:57 -08002755** If two or more threads call one or more
2756** [sqlite3_column_database_name | column metadata interfaces]
2757** for the same [prepared statement] and result column
2758** at the same time then the results are undefined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002759*/
Vasu Noria4356a02010-01-20 15:10:57 -08002760SQLITE_API const char *sqlite3_column_database_name(sqlite3_stmt*,int);
2761SQLITE_API const void *sqlite3_column_database_name16(sqlite3_stmt*,int);
2762SQLITE_API const char *sqlite3_column_table_name(sqlite3_stmt*,int);
2763SQLITE_API const void *sqlite3_column_table_name16(sqlite3_stmt*,int);
2764SQLITE_API const char *sqlite3_column_origin_name(sqlite3_stmt*,int);
2765SQLITE_API const void *sqlite3_column_origin_name16(sqlite3_stmt*,int);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002766
2767/*
Vasu Noria4356a02010-01-20 15:10:57 -08002768** CAPI3REF: Declared Datatype Of A Query Result
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002769**
Vasu Noria4356a02010-01-20 15:10:57 -08002770** ^(The first parameter is a [prepared statement].
2771** If this statement is a [SELECT] statement and the Nth column of the
2772** returned result set of that [SELECT] is a table column (not an
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002773** expression or subquery) then the declared type of the table
Vasu Noria4356a02010-01-20 15:10:57 -08002774** column is returned.)^ ^If the Nth column of the result set is an
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002775** expression or subquery, then a NULL pointer is returned.
Vasu Noria4356a02010-01-20 15:10:57 -08002776** ^The returned string is always UTF-8 encoded.
2777**
2778** ^(For example, given the database schema:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002779**
2780** CREATE TABLE t1(c1 VARIANT);
2781**
Vasu Noria4356a02010-01-20 15:10:57 -08002782** and the following statement to be compiled:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002783**
2784** SELECT c1 + 1, c1 FROM t1;
2785**
Vasu Noria4356a02010-01-20 15:10:57 -08002786** this routine would return the string "VARIANT" for the second result
2787** column (i==1), and a NULL pointer for the first result column (i==0).)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002788**
Vasu Noria4356a02010-01-20 15:10:57 -08002789** ^SQLite uses dynamic run-time typing. ^So just because a column
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002790** is declared to contain a particular type does not mean that the
2791** data stored in that column is of the declared type. SQLite is
Vasu Noria4356a02010-01-20 15:10:57 -08002792** strongly typed, but the typing is dynamic not static. ^Type
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002793** is associated with individual values, not with the containers
2794** used to hold those values.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002795*/
Vasu Noria4356a02010-01-20 15:10:57 -08002796SQLITE_API const char *sqlite3_column_decltype(sqlite3_stmt*,int);
2797SQLITE_API const void *sqlite3_column_decltype16(sqlite3_stmt*,int);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002798
Vasu Noria4356a02010-01-20 15:10:57 -08002799/*
2800** CAPI3REF: Evaluate An SQL Statement
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002801**
Vasu Noria4356a02010-01-20 15:10:57 -08002802** After a [prepared statement] has been prepared using either
2803** [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] or one of the legacy
2804** interfaces [sqlite3_prepare()] or [sqlite3_prepare16()], this function
2805** must be called one or more times to evaluate the statement.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002806**
Vasu Noria4356a02010-01-20 15:10:57 -08002807** The details of the behavior of the sqlite3_step() interface depend
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002808** on whether the statement was prepared using the newer "v2" interface
2809** [sqlite3_prepare_v2()] and [sqlite3_prepare16_v2()] or the older legacy
2810** interface [sqlite3_prepare()] and [sqlite3_prepare16()]. The use of the
2811** new "v2" interface is recommended for new applications but the legacy
2812** interface will continue to be supported.
2813**
Vasu Noria4356a02010-01-20 15:10:57 -08002814** ^In the legacy interface, the return value will be either [SQLITE_BUSY],
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002815** [SQLITE_DONE], [SQLITE_ROW], [SQLITE_ERROR], or [SQLITE_MISUSE].
Vasu Noria4356a02010-01-20 15:10:57 -08002816** ^With the "v2" interface, any of the other [result codes] or
2817** [extended result codes] might be returned as well.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002818**
Vasu Noria4356a02010-01-20 15:10:57 -08002819** ^[SQLITE_BUSY] means that the database engine was unable to acquire the
2820** database locks it needs to do its job. ^If the statement is a [COMMIT]
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002821** or occurs outside of an explicit transaction, then you can retry the
Vasu Noria4356a02010-01-20 15:10:57 -08002822** statement. If the statement is not a [COMMIT] and occurs within a
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002823** explicit transaction then you should rollback the transaction before
2824** continuing.
2825**
Vasu Noria4356a02010-01-20 15:10:57 -08002826** ^[SQLITE_DONE] means that the statement has finished executing
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002827** successfully. sqlite3_step() should not be called again on this virtual
2828** machine without first calling [sqlite3_reset()] to reset the virtual
2829** machine back to its initial state.
2830**
Vasu Noria4356a02010-01-20 15:10:57 -08002831** ^If the SQL statement being executed returns any data, then [SQLITE_ROW]
2832** is returned each time a new row of data is ready for processing by the
2833** caller. The values may be accessed using the [column access functions].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002834** sqlite3_step() is called again to retrieve the next row of data.
Vasu Noria4356a02010-01-20 15:10:57 -08002835**
2836** ^[SQLITE_ERROR] means that a run-time error (such as a constraint
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002837** violation) has occurred. sqlite3_step() should not be called again on
2838** the VM. More information may be found by calling [sqlite3_errmsg()].
Vasu Noria4356a02010-01-20 15:10:57 -08002839** ^With the legacy interface, a more specific error code (for example,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002840** [SQLITE_INTERRUPT], [SQLITE_SCHEMA], [SQLITE_CORRUPT], and so forth)
2841** can be obtained by calling [sqlite3_reset()] on the
Vasu Noria4356a02010-01-20 15:10:57 -08002842** [prepared statement]. ^In the "v2" interface,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002843** the more specific error code is returned directly by sqlite3_step().
2844**
2845** [SQLITE_MISUSE] means that the this routine was called inappropriately.
2846** Perhaps it was called on a [prepared statement] that has
Vasu Noria4356a02010-01-20 15:10:57 -08002847** already been [sqlite3_finalize | finalized] or on one that had
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002848** previously returned [SQLITE_ERROR] or [SQLITE_DONE]. Or it could
2849** be the case that the same database connection is being used by two or
2850** more threads at the same moment in time.
2851**
Vasu Noria4356a02010-01-20 15:10:57 -08002852** <b>Goofy Interface Alert:</b> In the legacy interface, the sqlite3_step()
2853** API always returns a generic error code, [SQLITE_ERROR], following any
2854** error other than [SQLITE_BUSY] and [SQLITE_MISUSE]. You must call
2855** [sqlite3_reset()] or [sqlite3_finalize()] in order to find one of the
2856** specific [error codes] that better describes the error.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002857** We admit that this is a goofy design. The problem has been fixed
2858** with the "v2" interface. If you prepare all of your SQL statements
2859** using either [sqlite3_prepare_v2()] or [sqlite3_prepare16_v2()] instead
Vasu Noria4356a02010-01-20 15:10:57 -08002860** of the legacy [sqlite3_prepare()] and [sqlite3_prepare16()] interfaces,
2861** then the more specific [error codes] are returned directly
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002862** by sqlite3_step(). The use of the "v2" interface is recommended.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002863*/
Vasu Noria4356a02010-01-20 15:10:57 -08002864SQLITE_API int sqlite3_step(sqlite3_stmt*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002865
2866/*
Vasu Noria4356a02010-01-20 15:10:57 -08002867** CAPI3REF: Number of columns in a result set
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002868**
Vasu Noria4356a02010-01-20 15:10:57 -08002869** ^The sqlite3_data_count(P) the number of columns in the
2870** of the result set of [prepared statement] P.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002871*/
Vasu Noria4356a02010-01-20 15:10:57 -08002872SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002873
2874/*
Vasu Noria4356a02010-01-20 15:10:57 -08002875** CAPI3REF: Fundamental Datatypes
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002876** KEYWORDS: SQLITE_TEXT
2877**
Vasu Noria4356a02010-01-20 15:10:57 -08002878** ^(Every value in SQLite has one of five fundamental datatypes:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002879**
2880** <ul>
2881** <li> 64-bit signed integer
2882** <li> 64-bit IEEE floating point number
2883** <li> string
2884** <li> BLOB
2885** <li> NULL
Vasu Noria4356a02010-01-20 15:10:57 -08002886** </ul>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002887**
2888** These constants are codes for each of those types.
2889**
2890** Note that the SQLITE_TEXT constant was also used in SQLite version 2
2891** for a completely different meaning. Software that links against both
Vasu Noria4356a02010-01-20 15:10:57 -08002892** SQLite version 2 and SQLite version 3 should use SQLITE3_TEXT, not
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002893** SQLITE_TEXT.
2894*/
2895#define SQLITE_INTEGER 1
2896#define SQLITE_FLOAT 2
2897#define SQLITE_BLOB 4
2898#define SQLITE_NULL 5
2899#ifdef SQLITE_TEXT
2900# undef SQLITE_TEXT
2901#else
2902# define SQLITE_TEXT 3
2903#endif
2904#define SQLITE3_TEXT 3
2905
2906/*
Vasu Noria4356a02010-01-20 15:10:57 -08002907** CAPI3REF: Result Values From A Query
2908** KEYWORDS: {column access functions}
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002909**
Vasu Noria4356a02010-01-20 15:10:57 -08002910** These routines form the "result set" interface.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002911**
Vasu Noria4356a02010-01-20 15:10:57 -08002912** ^These routines return information about a single column of the current
2913** result row of a query. ^In every case the first argument is a pointer
2914** to the [prepared statement] that is being evaluated (the [sqlite3_stmt*]
2915** that was returned from [sqlite3_prepare_v2()] or one of its variants)
2916** and the second argument is the index of the column for which information
2917** should be returned. ^The leftmost column of the result set has the index 0.
2918** ^The number of columns in the result can be determined using
2919** [sqlite3_column_count()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002920**
Vasu Noria4356a02010-01-20 15:10:57 -08002921** If the SQL statement does not currently point to a valid row, or if the
2922** column index is out of range, the result is undefined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002923** These routines may only be called when the most recent call to
2924** [sqlite3_step()] has returned [SQLITE_ROW] and neither
Vasu Noria4356a02010-01-20 15:10:57 -08002925** [sqlite3_reset()] nor [sqlite3_finalize()] have been called subsequently.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002926** If any of these routines are called after [sqlite3_reset()] or
2927** [sqlite3_finalize()] or after [sqlite3_step()] has returned
2928** something other than [SQLITE_ROW], the results are undefined.
2929** If [sqlite3_step()] or [sqlite3_reset()] or [sqlite3_finalize()]
2930** are called from a different thread while any of these routines
Vasu Noria4356a02010-01-20 15:10:57 -08002931** are pending, then the results are undefined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002932**
Vasu Noria4356a02010-01-20 15:10:57 -08002933** ^The sqlite3_column_type() routine returns the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002934** [SQLITE_INTEGER | datatype code] for the initial data type
Vasu Noria4356a02010-01-20 15:10:57 -08002935** of the result column. ^The returned value is one of [SQLITE_INTEGER],
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002936** [SQLITE_FLOAT], [SQLITE_TEXT], [SQLITE_BLOB], or [SQLITE_NULL]. The value
2937** returned by sqlite3_column_type() is only meaningful if no type
2938** conversions have occurred as described below. After a type conversion,
2939** the value returned by sqlite3_column_type() is undefined. Future
2940** versions of SQLite may change the behavior of sqlite3_column_type()
2941** following a type conversion.
2942**
Vasu Noria4356a02010-01-20 15:10:57 -08002943** ^If the result is a BLOB or UTF-8 string then the sqlite3_column_bytes()
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002944** routine returns the number of bytes in that BLOB or string.
Vasu Noria4356a02010-01-20 15:10:57 -08002945** ^If the result is a UTF-16 string, then sqlite3_column_bytes() converts
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002946** the string to UTF-8 and then returns the number of bytes.
Vasu Noria4356a02010-01-20 15:10:57 -08002947** ^If the result is a numeric value then sqlite3_column_bytes() uses
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002948** [sqlite3_snprintf()] to convert that value to a UTF-8 string and returns
2949** the number of bytes in that string.
Vasu Noria4356a02010-01-20 15:10:57 -08002950** ^The value returned does not include the zero terminator at the end
2951** of the string. ^For clarity: the value returned is the number of
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002952** bytes in the string, not the number of characters.
2953**
Vasu Noria4356a02010-01-20 15:10:57 -08002954** ^Strings returned by sqlite3_column_text() and sqlite3_column_text16(),
2955** even empty strings, are always zero terminated. ^The return
2956** value from sqlite3_column_blob() for a zero-length BLOB is an arbitrary
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002957** pointer, possibly even a NULL pointer.
2958**
Vasu Noria4356a02010-01-20 15:10:57 -08002959** ^The sqlite3_column_bytes16() routine is similar to sqlite3_column_bytes()
2960** but leaves the result in UTF-16 in native byte order instead of UTF-8.
2961** ^The zero terminator is not included in this count.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002962**
Vasu Noria4356a02010-01-20 15:10:57 -08002963** ^The object returned by [sqlite3_column_value()] is an
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002964** [unprotected sqlite3_value] object. An unprotected sqlite3_value object
2965** may only be used with [sqlite3_bind_value()] and [sqlite3_result_value()].
2966** If the [unprotected sqlite3_value] object returned by
2967** [sqlite3_column_value()] is used in any other way, including calls
Vasu Noria4356a02010-01-20 15:10:57 -08002968** to routines like [sqlite3_value_int()], [sqlite3_value_text()],
2969** or [sqlite3_value_bytes()], then the behavior is undefined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002970**
Vasu Noria4356a02010-01-20 15:10:57 -08002971** These routines attempt to convert the value where appropriate. ^For
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002972** example, if the internal representation is FLOAT and a text result
Vasu Noria4356a02010-01-20 15:10:57 -08002973** is requested, [sqlite3_snprintf()] is used internally to perform the
2974** conversion automatically. ^(The following table details the conversions
2975** that are applied:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002976**
2977** <blockquote>
2978** <table border="1">
2979** <tr><th> Internal<br>Type <th> Requested<br>Type <th> Conversion
2980**
2981** <tr><td> NULL <td> INTEGER <td> Result is 0
2982** <tr><td> NULL <td> FLOAT <td> Result is 0.0
2983** <tr><td> NULL <td> TEXT <td> Result is NULL pointer
2984** <tr><td> NULL <td> BLOB <td> Result is NULL pointer
2985** <tr><td> INTEGER <td> FLOAT <td> Convert from integer to float
2986** <tr><td> INTEGER <td> TEXT <td> ASCII rendering of the integer
Vasu Noria4356a02010-01-20 15:10:57 -08002987** <tr><td> INTEGER <td> BLOB <td> Same as INTEGER->TEXT
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002988** <tr><td> FLOAT <td> INTEGER <td> Convert from float to integer
2989** <tr><td> FLOAT <td> TEXT <td> ASCII rendering of the float
2990** <tr><td> FLOAT <td> BLOB <td> Same as FLOAT->TEXT
2991** <tr><td> TEXT <td> INTEGER <td> Use atoi()
2992** <tr><td> TEXT <td> FLOAT <td> Use atof()
2993** <tr><td> TEXT <td> BLOB <td> No change
2994** <tr><td> BLOB <td> INTEGER <td> Convert to TEXT then use atoi()
2995** <tr><td> BLOB <td> FLOAT <td> Convert to TEXT then use atof()
2996** <tr><td> BLOB <td> TEXT <td> Add a zero terminator if needed
2997** </table>
Vasu Noria4356a02010-01-20 15:10:57 -08002998** </blockquote>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08002999**
3000** The table above makes reference to standard C library functions atoi()
3001** and atof(). SQLite does not really use these functions. It has its
Vasu Noria4356a02010-01-20 15:10:57 -08003002** own equivalent internal routines. The atoi() and atof() names are
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003003** used in the table for brevity and because they are familiar to most
3004** C programmers.
3005**
Vasu Noria4356a02010-01-20 15:10:57 -08003006** ^Note that when type conversions occur, pointers returned by prior
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003007** calls to sqlite3_column_blob(), sqlite3_column_text(), and/or
Vasu Noria4356a02010-01-20 15:10:57 -08003008** sqlite3_column_text16() may be invalidated.
3009** ^(Type conversions and pointer invalidations might occur
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003010** in the following cases:
3011**
3012** <ul>
Vasu Noria4356a02010-01-20 15:10:57 -08003013** <li> The initial content is a BLOB and sqlite3_column_text() or
3014** sqlite3_column_text16() is called. A zero-terminator might
3015** need to be added to the string.</li>
3016** <li> The initial content is UTF-8 text and sqlite3_column_bytes16() or
3017** sqlite3_column_text16() is called. The content must be converted
3018** to UTF-16.</li>
3019** <li> The initial content is UTF-16 text and sqlite3_column_bytes() or
3020** sqlite3_column_text() is called. The content must be converted
3021** to UTF-8.</li>
3022** </ul>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003023**
Vasu Noria4356a02010-01-20 15:10:57 -08003024** ^Conversions between UTF-16be and UTF-16le are always done in place and do
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003025** not invalidate a prior pointer, though of course the content of the buffer
3026** that the prior pointer points to will have been modified. Other kinds
Vasu Noria4356a02010-01-20 15:10:57 -08003027** of conversion are done in place when it is possible, but sometimes they
3028** are not possible and in those cases prior pointers are invalidated.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003029**
Vasu Noria4356a02010-01-20 15:10:57 -08003030** ^(The safest and easiest to remember policy is to invoke these routines
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003031** in one of the following ways:
3032**
Vasu Noria4356a02010-01-20 15:10:57 -08003033** <ul>
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003034** <li>sqlite3_column_text() followed by sqlite3_column_bytes()</li>
3035** <li>sqlite3_column_blob() followed by sqlite3_column_bytes()</li>
3036** <li>sqlite3_column_text16() followed by sqlite3_column_bytes16()</li>
Vasu Noria4356a02010-01-20 15:10:57 -08003037** </ul>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003038**
Vasu Noria4356a02010-01-20 15:10:57 -08003039** In other words, you should call sqlite3_column_text(),
3040** sqlite3_column_blob(), or sqlite3_column_text16() first to force the result
3041** into the desired format, then invoke sqlite3_column_bytes() or
3042** sqlite3_column_bytes16() to find the size of the result. Do not mix calls
3043** to sqlite3_column_text() or sqlite3_column_blob() with calls to
3044** sqlite3_column_bytes16(), and do not mix calls to sqlite3_column_text16()
3045** with calls to sqlite3_column_bytes().
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003046**
Vasu Noria4356a02010-01-20 15:10:57 -08003047** ^The pointers returned are valid until a type conversion occurs as
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003048** described above, or until [sqlite3_step()] or [sqlite3_reset()] or
Vasu Noria4356a02010-01-20 15:10:57 -08003049** [sqlite3_finalize()] is called. ^The memory space used to hold strings
3050** and BLOBs is freed automatically. Do <b>not</b> pass the pointers returned
3051** [sqlite3_column_blob()], [sqlite3_column_text()], etc. into
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003052** [sqlite3_free()].
3053**
Vasu Noria4356a02010-01-20 15:10:57 -08003054** ^(If a memory allocation error occurs during the evaluation of any
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003055** of these routines, a default value is returned. The default value
3056** is either the integer 0, the floating point number 0.0, or a NULL
3057** pointer. Subsequent calls to [sqlite3_errcode()] will return
Vasu Noria4356a02010-01-20 15:10:57 -08003058** [SQLITE_NOMEM].)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003059*/
Vasu Noria4356a02010-01-20 15:10:57 -08003060SQLITE_API const void *sqlite3_column_blob(sqlite3_stmt*, int iCol);
3061SQLITE_API int sqlite3_column_bytes(sqlite3_stmt*, int iCol);
3062SQLITE_API int sqlite3_column_bytes16(sqlite3_stmt*, int iCol);
3063SQLITE_API double sqlite3_column_double(sqlite3_stmt*, int iCol);
3064SQLITE_API int sqlite3_column_int(sqlite3_stmt*, int iCol);
3065SQLITE_API sqlite3_int64 sqlite3_column_int64(sqlite3_stmt*, int iCol);
3066SQLITE_API const unsigned char *sqlite3_column_text(sqlite3_stmt*, int iCol);
3067SQLITE_API const void *sqlite3_column_text16(sqlite3_stmt*, int iCol);
3068SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol);
3069SQLITE_API sqlite3_value *sqlite3_column_value(sqlite3_stmt*, int iCol);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003070
3071/*
Vasu Noria4356a02010-01-20 15:10:57 -08003072** CAPI3REF: Destroy A Prepared Statement Object
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003073**
Vasu Noria4356a02010-01-20 15:10:57 -08003074** ^The sqlite3_finalize() function is called to delete a [prepared statement].
3075** ^If the statement was executed successfully or not executed at all, then
3076** SQLITE_OK is returned. ^If execution of the statement failed then an
3077** [error code] or [extended error code] is returned.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003078**
Vasu Noria4356a02010-01-20 15:10:57 -08003079** ^This routine can be called at any point during the execution of the
3080** [prepared statement]. ^If the virtual machine has not
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003081** completed execution when this routine is called, that is like
Vasu Noria4356a02010-01-20 15:10:57 -08003082** encountering an error or an [sqlite3_interrupt | interrupt].
3083** ^Incomplete updates may be rolled back and transactions canceled,
3084** depending on the circumstances, and the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003085** [error code] returned will be [SQLITE_ABORT].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003086*/
Vasu Noria4356a02010-01-20 15:10:57 -08003087SQLITE_API int sqlite3_finalize(sqlite3_stmt *pStmt);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003088
3089/*
Vasu Noria4356a02010-01-20 15:10:57 -08003090** CAPI3REF: Reset A Prepared Statement Object
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003091**
Vasu Noria4356a02010-01-20 15:10:57 -08003092** The sqlite3_reset() function is called to reset a [prepared statement]
3093** object back to its initial state, ready to be re-executed.
3094** ^Any SQL statement variables that had values bound to them using
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003095** the [sqlite3_bind_blob | sqlite3_bind_*() API] retain their values.
3096** Use [sqlite3_clear_bindings()] to reset the bindings.
3097**
Vasu Noria4356a02010-01-20 15:10:57 -08003098** ^The [sqlite3_reset(S)] interface resets the [prepared statement] S
3099** back to the beginning of its program.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003100**
Vasu Noria4356a02010-01-20 15:10:57 -08003101** ^If the most recent call to [sqlite3_step(S)] for the
3102** [prepared statement] S returned [SQLITE_ROW] or [SQLITE_DONE],
3103** or if [sqlite3_step(S)] has never before been called on S,
3104** then [sqlite3_reset(S)] returns [SQLITE_OK].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003105**
Vasu Noria4356a02010-01-20 15:10:57 -08003106** ^If the most recent call to [sqlite3_step(S)] for the
3107** [prepared statement] S indicated an error, then
3108** [sqlite3_reset(S)] returns an appropriate [error code].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003109**
Vasu Noria4356a02010-01-20 15:10:57 -08003110** ^The [sqlite3_reset(S)] interface does not change the values
3111** of any [sqlite3_bind_blob|bindings] on the [prepared statement] S.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003112*/
Vasu Noria4356a02010-01-20 15:10:57 -08003113SQLITE_API int sqlite3_reset(sqlite3_stmt *pStmt);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003114
3115/*
Vasu Noria4356a02010-01-20 15:10:57 -08003116** CAPI3REF: Create Or Redefine SQL Functions
3117** KEYWORDS: {function creation routines}
3118** KEYWORDS: {application-defined SQL function}
3119** KEYWORDS: {application-defined SQL functions}
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003120**
Vasu Noria4356a02010-01-20 15:10:57 -08003121** ^These two functions (collectively known as "function creation routines")
3122** are used to add SQL functions or aggregates or to redefine the behavior
3123** of existing SQL functions or aggregates. The only difference between the
3124** two is that the second parameter, the name of the (scalar) function or
3125** aggregate, is encoded in UTF-8 for sqlite3_create_function() and UTF-16
3126** for sqlite3_create_function16().
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003127**
Vasu Noria4356a02010-01-20 15:10:57 -08003128** ^The first parameter is the [database connection] to which the SQL
3129** function is to be added. ^If an application uses more than one database
3130** connection then application-defined SQL functions must be added
3131** to each database connection separately.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003132**
Vasu Noria4356a02010-01-20 15:10:57 -08003133** The second parameter is the name of the SQL function to be created or
3134** redefined. ^The length of the name is limited to 255 bytes, exclusive of
3135** the zero-terminator. Note that the name length limit is in bytes, not
3136** characters. ^Any attempt to create a function with a longer name
3137** will result in [SQLITE_ERROR] being returned.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003138**
Vasu Noria4356a02010-01-20 15:10:57 -08003139** ^The third parameter (nArg)
3140** is the number of arguments that the SQL function or
3141** aggregate takes. ^If this parameter is -1, then the SQL function or
3142** aggregate may take any number of arguments between 0 and the limit
3143** set by [sqlite3_limit]([SQLITE_LIMIT_FUNCTION_ARG]). If the third
3144** parameter is less than -1 or greater than 127 then the behavior is
3145** undefined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003146**
Vasu Noria4356a02010-01-20 15:10:57 -08003147** The fourth parameter, eTextRep, specifies what
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003148** [SQLITE_UTF8 | text encoding] this SQL function prefers for
3149** its parameters. Any SQL function implementation should be able to work
3150** work with UTF-8, UTF-16le, or UTF-16be. But some implementations may be
Vasu Noria4356a02010-01-20 15:10:57 -08003151** more efficient with one encoding than another. ^An application may
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003152** invoke sqlite3_create_function() or sqlite3_create_function16() multiple
3153** times with the same function but with different values of eTextRep.
Vasu Noria4356a02010-01-20 15:10:57 -08003154** ^When multiple implementations of the same function are available, SQLite
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003155** will pick the one that involves the least amount of data conversion.
Vasu Noria4356a02010-01-20 15:10:57 -08003156** If there is only a single implementation which does not care what text
3157** encoding is used, then the fourth argument should be [SQLITE_ANY].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003158**
Vasu Noria4356a02010-01-20 15:10:57 -08003159** ^(The fifth parameter is an arbitrary pointer. The implementation of the
3160** function can gain access to this pointer using [sqlite3_user_data()].)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003161**
3162** The seventh, eighth and ninth parameters, xFunc, xStep and xFinal, are
Vasu Noria4356a02010-01-20 15:10:57 -08003163** pointers to C-language functions that implement the SQL function or
3164** aggregate. ^A scalar SQL function requires an implementation of the xFunc
3165** callback only; NULL pointers should be passed as the xStep and xFinal
3166** parameters. ^An aggregate SQL function requires an implementation of xStep
3167** and xFinal and NULL should be passed for xFunc. ^To delete an existing
3168** SQL function or aggregate, pass NULL for all three function callbacks.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003169**
Vasu Noria4356a02010-01-20 15:10:57 -08003170** ^It is permitted to register multiple implementations of the same
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003171** functions with the same name but with either differing numbers of
Vasu Noria4356a02010-01-20 15:10:57 -08003172** arguments or differing preferred text encodings. ^SQLite will use
3173** the implementation that most closely matches the way in which the
3174** SQL function is used. ^A function implementation with a non-negative
3175** nArg parameter is a better match than a function implementation with
3176** a negative nArg. ^A function where the preferred text encoding
3177** matches the database encoding is a better
3178** match than a function where the encoding is different.
3179** ^A function where the encoding difference is between UTF16le and UTF16be
3180** is a closer match than a function where the encoding difference is
3181** between UTF8 and UTF16.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003182**
Vasu Noria4356a02010-01-20 15:10:57 -08003183** ^Built-in functions may be overloaded by new application-defined functions.
3184** ^The first application-defined function with a given name overrides all
3185** built-in functions in the same [database connection] with the same name.
3186** ^Subsequent application-defined functions of the same name only override
3187** prior application-defined functions that are an exact match for the
3188** number of parameters and preferred encoding.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003189**
Vasu Noria4356a02010-01-20 15:10:57 -08003190** ^An application-defined function is permitted to call other
3191** SQLite interfaces. However, such calls must not
3192** close the database connection nor finalize or reset the prepared
3193** statement in which the function is running.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003194*/
Vasu Noria4356a02010-01-20 15:10:57 -08003195SQLITE_API int sqlite3_create_function(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003196 sqlite3 *db,
3197 const char *zFunctionName,
3198 int nArg,
3199 int eTextRep,
3200 void *pApp,
3201 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3202 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
3203 void (*xFinal)(sqlite3_context*)
3204);
Vasu Noria4356a02010-01-20 15:10:57 -08003205SQLITE_API int sqlite3_create_function16(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003206 sqlite3 *db,
3207 const void *zFunctionName,
3208 int nArg,
3209 int eTextRep,
3210 void *pApp,
3211 void (*xFunc)(sqlite3_context*,int,sqlite3_value**),
3212 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
3213 void (*xFinal)(sqlite3_context*)
3214);
3215
3216/*
Vasu Noria4356a02010-01-20 15:10:57 -08003217** CAPI3REF: Text Encodings
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003218**
3219** These constant define integer codes that represent the various
3220** text encodings supported by SQLite.
3221*/
3222#define SQLITE_UTF8 1
3223#define SQLITE_UTF16LE 2
3224#define SQLITE_UTF16BE 3
3225#define SQLITE_UTF16 4 /* Use native byte order */
3226#define SQLITE_ANY 5 /* sqlite3_create_function only */
3227#define SQLITE_UTF16_ALIGNED 8 /* sqlite3_create_collation only */
3228
3229/*
Vasu Noria4356a02010-01-20 15:10:57 -08003230** CAPI3REF: Deprecated Functions
3231** DEPRECATED
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003232**
Vasu Noria4356a02010-01-20 15:10:57 -08003233** These functions are [deprecated]. In order to maintain
3234** backwards compatibility with older code, these functions continue
3235** to be supported. However, new applications should avoid
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003236** the use of these functions. To help encourage people to avoid
Vasu Noria4356a02010-01-20 15:10:57 -08003237** using these functions, we are not going to tell you what they do.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003238*/
Vasu Noria4356a02010-01-20 15:10:57 -08003239#ifndef SQLITE_OMIT_DEPRECATED
3240SQLITE_API SQLITE_DEPRECATED int sqlite3_aggregate_count(sqlite3_context*);
3241SQLITE_API SQLITE_DEPRECATED int sqlite3_expired(sqlite3_stmt*);
3242SQLITE_API SQLITE_DEPRECATED int sqlite3_transfer_bindings(sqlite3_stmt*, sqlite3_stmt*);
3243SQLITE_API SQLITE_DEPRECATED int sqlite3_global_recover(void);
3244SQLITE_API SQLITE_DEPRECATED void sqlite3_thread_cleanup(void);
3245SQLITE_API SQLITE_DEPRECATED int sqlite3_memory_alarm(void(*)(void*,sqlite3_int64,int),void*,sqlite3_int64);
3246#endif
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003247
3248/*
Vasu Noria4356a02010-01-20 15:10:57 -08003249** CAPI3REF: Obtaining SQL Function Parameter Values
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003250**
3251** The C-language implementation of SQL functions and aggregates uses
3252** this set of interface routines to access the parameter values on
3253** the function or aggregate.
3254**
3255** The xFunc (for scalar functions) or xStep (for aggregates) parameters
3256** to [sqlite3_create_function()] and [sqlite3_create_function16()]
3257** define callbacks that implement the SQL functions and aggregates.
3258** The 4th parameter to these callbacks is an array of pointers to
3259** [protected sqlite3_value] objects. There is one [sqlite3_value] object for
3260** each parameter to the SQL function. These routines are used to
3261** extract values from the [sqlite3_value] objects.
3262**
3263** These routines work only with [protected sqlite3_value] objects.
3264** Any attempt to use these routines on an [unprotected sqlite3_value]
3265** object results in undefined behavior.
3266**
Vasu Noria4356a02010-01-20 15:10:57 -08003267** ^These routines work just like the corresponding [column access functions]
3268** except that these routines take a single [protected sqlite3_value] object
3269** pointer instead of a [sqlite3_stmt*] pointer and an integer column number.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003270**
Vasu Noria4356a02010-01-20 15:10:57 -08003271** ^The sqlite3_value_text16() interface extracts a UTF-16 string
3272** in the native byte-order of the host machine. ^The
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003273** sqlite3_value_text16be() and sqlite3_value_text16le() interfaces
Vasu Noria4356a02010-01-20 15:10:57 -08003274** extract UTF-16 strings as big-endian and little-endian respectively.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003275**
Vasu Noria4356a02010-01-20 15:10:57 -08003276** ^(The sqlite3_value_numeric_type() interface attempts to apply
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003277** numeric affinity to the value. This means that an attempt is
3278** made to convert the value to an integer or floating point. If
3279** such a conversion is possible without loss of information (in other
Vasu Noria4356a02010-01-20 15:10:57 -08003280** words, if the value is a string that looks like a number)
3281** then the conversion is performed. Otherwise no conversion occurs.
3282** The [SQLITE_INTEGER | datatype] after conversion is returned.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003283**
Vasu Noria4356a02010-01-20 15:10:57 -08003284** Please pay particular attention to the fact that the pointer returned
3285** from [sqlite3_value_blob()], [sqlite3_value_text()], or
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003286** [sqlite3_value_text16()] can be invalidated by a subsequent call to
3287** [sqlite3_value_bytes()], [sqlite3_value_bytes16()], [sqlite3_value_text()],
Vasu Noria4356a02010-01-20 15:10:57 -08003288** or [sqlite3_value_text16()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003289**
3290** These routines must be called from the same thread as
3291** the SQL function that supplied the [sqlite3_value*] parameters.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003292*/
Vasu Noria4356a02010-01-20 15:10:57 -08003293SQLITE_API const void *sqlite3_value_blob(sqlite3_value*);
3294SQLITE_API int sqlite3_value_bytes(sqlite3_value*);
3295SQLITE_API int sqlite3_value_bytes16(sqlite3_value*);
3296SQLITE_API double sqlite3_value_double(sqlite3_value*);
3297SQLITE_API int sqlite3_value_int(sqlite3_value*);
3298SQLITE_API sqlite3_int64 sqlite3_value_int64(sqlite3_value*);
3299SQLITE_API const unsigned char *sqlite3_value_text(sqlite3_value*);
3300SQLITE_API const void *sqlite3_value_text16(sqlite3_value*);
3301SQLITE_API const void *sqlite3_value_text16le(sqlite3_value*);
3302SQLITE_API const void *sqlite3_value_text16be(sqlite3_value*);
3303SQLITE_API int sqlite3_value_type(sqlite3_value*);
3304SQLITE_API int sqlite3_value_numeric_type(sqlite3_value*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003305
3306/*
Vasu Noria4356a02010-01-20 15:10:57 -08003307** CAPI3REF: Obtain Aggregate Function Context
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003308**
Vasu Noria4356a02010-01-20 15:10:57 -08003309** Implementions of aggregate SQL functions use this
3310** routine to allocate memory for storing their state.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003311**
Vasu Noria4356a02010-01-20 15:10:57 -08003312** ^The first time the sqlite3_aggregate_context(C,N) routine is called
3313** for a particular aggregate function, SQLite
3314** allocates N of memory, zeroes out that memory, and returns a pointer
3315** to the new memory. ^On second and subsequent calls to
3316** sqlite3_aggregate_context() for the same aggregate function instance,
3317** the same buffer is returned. Sqlite3_aggregate_context() is normally
3318** called once for each invocation of the xStep callback and then one
3319** last time when the xFinal callback is invoked. ^(When no rows match
3320** an aggregate query, the xStep() callback of the aggregate function
3321** implementation is never called and xFinal() is called exactly once.
3322** In those cases, sqlite3_aggregate_context() might be called for the
3323** first time from within xFinal().)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003324**
Vasu Noria4356a02010-01-20 15:10:57 -08003325** ^The sqlite3_aggregate_context(C,N) routine returns a NULL pointer if N is
3326** less than or equal to zero or if a memory allocate error occurs.
3327**
3328** ^(The amount of space allocated by sqlite3_aggregate_context(C,N) is
3329** determined by the N parameter on first successful call. Changing the
3330** value of N in subsequent call to sqlite3_aggregate_context() within
3331** the same aggregate function instance will not resize the memory
3332** allocation.)^
3333**
3334** ^SQLite automatically frees the memory allocated by
3335** sqlite3_aggregate_context() when the aggregate query concludes.
3336**
3337** The first parameter must be a copy of the
3338** [sqlite3_context | SQL function context] that is the first parameter
3339** to the xStep or xFinal callback routine that implements the aggregate
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003340** function.
3341**
3342** This routine must be called from the same thread in which
3343** the aggregate SQL function is running.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003344*/
Vasu Noria4356a02010-01-20 15:10:57 -08003345SQLITE_API void *sqlite3_aggregate_context(sqlite3_context*, int nBytes);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003346
3347/*
Vasu Noria4356a02010-01-20 15:10:57 -08003348** CAPI3REF: User Data For Functions
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003349**
Vasu Noria4356a02010-01-20 15:10:57 -08003350** ^The sqlite3_user_data() interface returns a copy of
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003351** the pointer that was the pUserData parameter (the 5th parameter)
Vasu Noria4356a02010-01-20 15:10:57 -08003352** of the [sqlite3_create_function()]
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003353** and [sqlite3_create_function16()] routines that originally
3354** registered the application defined function.
3355**
Vasu Noria4356a02010-01-20 15:10:57 -08003356** This routine must be called from the same thread in which
3357** the application-defined function is running.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003358*/
Vasu Noria4356a02010-01-20 15:10:57 -08003359SQLITE_API void *sqlite3_user_data(sqlite3_context*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003360
3361/*
Vasu Noria4356a02010-01-20 15:10:57 -08003362** CAPI3REF: Database Connection For Functions
3363**
3364** ^The sqlite3_context_db_handle() interface returns a copy of
3365** the pointer to the [database connection] (the 1st parameter)
3366** of the [sqlite3_create_function()]
3367** and [sqlite3_create_function16()] routines that originally
3368** registered the application defined function.
3369*/
3370SQLITE_API sqlite3 *sqlite3_context_db_handle(sqlite3_context*);
3371
3372/*
3373** CAPI3REF: Function Auxiliary Data
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003374**
3375** The following two functions may be used by scalar SQL functions to
Vasu Noria4356a02010-01-20 15:10:57 -08003376** associate metadata with argument values. If the same value is passed to
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003377** multiple invocations of the same SQL function during query execution, under
Vasu Noria4356a02010-01-20 15:10:57 -08003378** some circumstances the associated metadata may be preserved. This may
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003379** be used, for example, to add a regular-expression matching scalar
3380** function. The compiled version of the regular expression is stored as
Vasu Noria4356a02010-01-20 15:10:57 -08003381** metadata associated with the SQL value passed as the regular expression
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003382** pattern. The compiled regular expression can be reused on multiple
3383** invocations of the same function so that the original pattern string
3384** does not need to be recompiled on each invocation.
3385**
Vasu Noria4356a02010-01-20 15:10:57 -08003386** ^The sqlite3_get_auxdata() interface returns a pointer to the metadata
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003387** associated by the sqlite3_set_auxdata() function with the Nth argument
Vasu Noria4356a02010-01-20 15:10:57 -08003388** value to the application-defined function. ^If no metadata has been ever
3389** been set for the Nth argument of the function, or if the corresponding
3390** function parameter has changed since the meta-data was set,
3391** then sqlite3_get_auxdata() returns a NULL pointer.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003392**
Vasu Noria4356a02010-01-20 15:10:57 -08003393** ^The sqlite3_set_auxdata() interface saves the metadata
3394** pointed to by its 3rd parameter as the metadata for the N-th
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003395** argument of the application-defined function. Subsequent
3396** calls to sqlite3_get_auxdata() might return this data, if it has
Vasu Noria4356a02010-01-20 15:10:57 -08003397** not been destroyed.
3398** ^If it is not NULL, SQLite will invoke the destructor
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003399** function given by the 4th parameter to sqlite3_set_auxdata() on
Vasu Noria4356a02010-01-20 15:10:57 -08003400** the metadata when the corresponding function parameter changes
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003401** or when the SQL statement completes, whichever comes first.
3402**
Vasu Noria4356a02010-01-20 15:10:57 -08003403** SQLite is free to call the destructor and drop metadata on any
3404** parameter of any function at any time. ^The only guarantee is that
3405** the destructor will be called before the metadata is dropped.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003406**
Vasu Noria4356a02010-01-20 15:10:57 -08003407** ^(In practice, metadata is preserved between function calls for
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003408** expressions that are constant at compile time. This includes literal
Vasu Noria4356a02010-01-20 15:10:57 -08003409** values and [parameters].)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003410**
3411** These routines must be called from the same thread in which
3412** the SQL function is running.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003413*/
Vasu Noria4356a02010-01-20 15:10:57 -08003414SQLITE_API void *sqlite3_get_auxdata(sqlite3_context*, int N);
3415SQLITE_API void sqlite3_set_auxdata(sqlite3_context*, int N, void*, void (*)(void*));
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003416
3417
3418/*
Vasu Noria4356a02010-01-20 15:10:57 -08003419** CAPI3REF: Constants Defining Special Destructor Behavior
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003420**
Vasu Noria4356a02010-01-20 15:10:57 -08003421** These are special values for the destructor that is passed in as the
3422** final argument to routines like [sqlite3_result_blob()]. ^If the destructor
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003423** argument is SQLITE_STATIC, it means that the content pointer is constant
Vasu Noria4356a02010-01-20 15:10:57 -08003424** and will never change. It does not need to be destroyed. ^The
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003425** SQLITE_TRANSIENT value means that the content will likely change in
3426** the near future and that SQLite should make its own private copy of
3427** the content before returning.
3428**
3429** The typedef is necessary to work around problems in certain
3430** C++ compilers. See ticket #2191.
3431*/
3432typedef void (*sqlite3_destructor_type)(void*);
3433#define SQLITE_STATIC ((sqlite3_destructor_type)0)
3434#define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1)
3435
3436/*
Vasu Noria4356a02010-01-20 15:10:57 -08003437** CAPI3REF: Setting The Result Of An SQL Function
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003438**
3439** These routines are used by the xFunc or xFinal callbacks that
3440** implement SQL functions and aggregates. See
3441** [sqlite3_create_function()] and [sqlite3_create_function16()]
3442** for additional information.
3443**
Vasu Noria4356a02010-01-20 15:10:57 -08003444** These functions work very much like the [parameter binding] family of
3445** functions used to bind values to host parameters in prepared statements.
3446** Refer to the [SQL parameter] documentation for additional information.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003447**
Vasu Noria4356a02010-01-20 15:10:57 -08003448** ^The sqlite3_result_blob() interface sets the result from
3449** an application-defined function to be the BLOB whose content is pointed
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003450** to by the second parameter and which is N bytes long where N is the
Vasu Noria4356a02010-01-20 15:10:57 -08003451** third parameter.
3452**
3453** ^The sqlite3_result_zeroblob() interfaces set the result of
3454** the application-defined function to be a BLOB containing all zero
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003455** bytes and N bytes in size, where N is the value of the 2nd parameter.
3456**
Vasu Noria4356a02010-01-20 15:10:57 -08003457** ^The sqlite3_result_double() interface sets the result from
3458** an application-defined function to be a floating point value specified
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003459** by its 2nd argument.
3460**
Vasu Noria4356a02010-01-20 15:10:57 -08003461** ^The sqlite3_result_error() and sqlite3_result_error16() functions
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003462** cause the implemented SQL function to throw an exception.
Vasu Noria4356a02010-01-20 15:10:57 -08003463** ^SQLite uses the string pointed to by the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003464** 2nd parameter of sqlite3_result_error() or sqlite3_result_error16()
Vasu Noria4356a02010-01-20 15:10:57 -08003465** as the text of an error message. ^SQLite interprets the error
3466** message string from sqlite3_result_error() as UTF-8. ^SQLite
3467** interprets the string from sqlite3_result_error16() as UTF-16 in native
3468** byte order. ^If the third parameter to sqlite3_result_error()
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003469** or sqlite3_result_error16() is negative then SQLite takes as the error
3470** message all text up through the first zero character.
Vasu Noria4356a02010-01-20 15:10:57 -08003471** ^If the third parameter to sqlite3_result_error() or
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003472** sqlite3_result_error16() is non-negative then SQLite takes that many
3473** bytes (not characters) from the 2nd parameter as the error message.
Vasu Noria4356a02010-01-20 15:10:57 -08003474** ^The sqlite3_result_error() and sqlite3_result_error16()
3475** routines make a private copy of the error message text before
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003476** they return. Hence, the calling function can deallocate or
3477** modify the text after they return without harm.
Vasu Noria4356a02010-01-20 15:10:57 -08003478** ^The sqlite3_result_error_code() function changes the error code
3479** returned by SQLite as a result of an error in a function. ^By default,
3480** the error code is SQLITE_ERROR. ^A subsequent call to sqlite3_result_error()
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003481** or sqlite3_result_error16() resets the error code to SQLITE_ERROR.
3482**
Vasu Noria4356a02010-01-20 15:10:57 -08003483** ^The sqlite3_result_toobig() interface causes SQLite to throw an error
3484** indicating that a string or BLOB is too long to represent.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003485**
Vasu Noria4356a02010-01-20 15:10:57 -08003486** ^The sqlite3_result_nomem() interface causes SQLite to throw an error
3487** indicating that a memory allocation failed.
3488**
3489** ^The sqlite3_result_int() interface sets the return value
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003490** of the application-defined function to be the 32-bit signed integer
3491** value given in the 2nd argument.
Vasu Noria4356a02010-01-20 15:10:57 -08003492** ^The sqlite3_result_int64() interface sets the return value
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003493** of the application-defined function to be the 64-bit signed integer
3494** value given in the 2nd argument.
3495**
Vasu Noria4356a02010-01-20 15:10:57 -08003496** ^The sqlite3_result_null() interface sets the return value
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003497** of the application-defined function to be NULL.
3498**
Vasu Noria4356a02010-01-20 15:10:57 -08003499** ^The sqlite3_result_text(), sqlite3_result_text16(),
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003500** sqlite3_result_text16le(), and sqlite3_result_text16be() interfaces
3501** set the return value of the application-defined function to be
3502** a text string which is represented as UTF-8, UTF-16 native byte order,
3503** UTF-16 little endian, or UTF-16 big endian, respectively.
Vasu Noria4356a02010-01-20 15:10:57 -08003504** ^SQLite takes the text result from the application from
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003505** the 2nd parameter of the sqlite3_result_text* interfaces.
Vasu Noria4356a02010-01-20 15:10:57 -08003506** ^If the 3rd parameter to the sqlite3_result_text* interfaces
3507** is negative, then SQLite takes result text from the 2nd parameter
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003508** through the first zero character.
Vasu Noria4356a02010-01-20 15:10:57 -08003509** ^If the 3rd parameter to the sqlite3_result_text* interfaces
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003510** is non-negative, then as many bytes (not characters) of the text
3511** pointed to by the 2nd parameter are taken as the application-defined
3512** function result.
Vasu Noria4356a02010-01-20 15:10:57 -08003513** ^If the 4th parameter to the sqlite3_result_text* interfaces
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003514** or sqlite3_result_blob is a non-NULL pointer, then SQLite calls that
Vasu Noria4356a02010-01-20 15:10:57 -08003515** function as the destructor on the text or BLOB result when it has
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003516** finished using that result.
Vasu Noria4356a02010-01-20 15:10:57 -08003517** ^If the 4th parameter to the sqlite3_result_text* interfaces or to
3518** sqlite3_result_blob is the special constant SQLITE_STATIC, then SQLite
3519** assumes that the text or BLOB result is in constant space and does not
3520** copy the content of the parameter nor call a destructor on the content
3521** when it has finished using that result.
3522** ^If the 4th parameter to the sqlite3_result_text* interfaces
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003523** or sqlite3_result_blob is the special constant SQLITE_TRANSIENT
3524** then SQLite makes a copy of the result into space obtained from
3525** from [sqlite3_malloc()] before it returns.
3526**
Vasu Noria4356a02010-01-20 15:10:57 -08003527** ^The sqlite3_result_value() interface sets the result of
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003528** the application-defined function to be a copy the
Vasu Noria4356a02010-01-20 15:10:57 -08003529** [unprotected sqlite3_value] object specified by the 2nd parameter. ^The
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003530** sqlite3_result_value() interface makes a copy of the [sqlite3_value]
Vasu Noria4356a02010-01-20 15:10:57 -08003531** so that the [sqlite3_value] specified in the parameter may change or
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003532** be deallocated after sqlite3_result_value() returns without harm.
Vasu Noria4356a02010-01-20 15:10:57 -08003533** ^A [protected sqlite3_value] object may always be used where an
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003534** [unprotected sqlite3_value] object is required, so either
3535** kind of [sqlite3_value] object can be used with this interface.
3536**
Vasu Noria4356a02010-01-20 15:10:57 -08003537** If these routines are called from within the different thread
3538** than the one containing the application-defined function that received
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003539** the [sqlite3_context] pointer, the results are undefined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003540*/
Vasu Noria4356a02010-01-20 15:10:57 -08003541SQLITE_API void sqlite3_result_blob(sqlite3_context*, const void*, int, void(*)(void*));
3542SQLITE_API void sqlite3_result_double(sqlite3_context*, double);
3543SQLITE_API void sqlite3_result_error(sqlite3_context*, const char*, int);
3544SQLITE_API void sqlite3_result_error16(sqlite3_context*, const void*, int);
3545SQLITE_API void sqlite3_result_error_toobig(sqlite3_context*);
3546SQLITE_API void sqlite3_result_error_nomem(sqlite3_context*);
3547SQLITE_API void sqlite3_result_error_code(sqlite3_context*, int);
3548SQLITE_API void sqlite3_result_int(sqlite3_context*, int);
3549SQLITE_API void sqlite3_result_int64(sqlite3_context*, sqlite3_int64);
3550SQLITE_API void sqlite3_result_null(sqlite3_context*);
3551SQLITE_API void sqlite3_result_text(sqlite3_context*, const char*, int, void(*)(void*));
3552SQLITE_API void sqlite3_result_text16(sqlite3_context*, const void*, int, void(*)(void*));
3553SQLITE_API void sqlite3_result_text16le(sqlite3_context*, const void*, int,void(*)(void*));
3554SQLITE_API void sqlite3_result_text16be(sqlite3_context*, const void*, int,void(*)(void*));
3555SQLITE_API void sqlite3_result_value(sqlite3_context*, sqlite3_value*);
3556SQLITE_API void sqlite3_result_zeroblob(sqlite3_context*, int n);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003557
3558/*
Vasu Noria4356a02010-01-20 15:10:57 -08003559** CAPI3REF: Define New Collating Sequences
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003560**
3561** These functions are used to add new collation sequences to the
Vasu Noria4356a02010-01-20 15:10:57 -08003562** [database connection] specified as the first argument.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003563**
Vasu Noria4356a02010-01-20 15:10:57 -08003564** ^The name of the new collation sequence is specified as a UTF-8 string
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003565** for sqlite3_create_collation() and sqlite3_create_collation_v2()
Vasu Noria4356a02010-01-20 15:10:57 -08003566** and a UTF-16 string for sqlite3_create_collation16(). ^In all cases
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003567** the name is passed as the second function argument.
3568**
Vasu Noria4356a02010-01-20 15:10:57 -08003569** ^The third argument may be one of the constants [SQLITE_UTF8],
3570** [SQLITE_UTF16LE], or [SQLITE_UTF16BE], indicating that the user-supplied
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003571** routine expects to be passed pointers to strings encoded using UTF-8,
Vasu Noria4356a02010-01-20 15:10:57 -08003572** UTF-16 little-endian, or UTF-16 big-endian, respectively. ^The
3573** third argument might also be [SQLITE_UTF16] to indicate that the routine
3574** expects pointers to be UTF-16 strings in the native byte order, or the
3575** argument can be [SQLITE_UTF16_ALIGNED] if the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003576** the routine expects pointers to 16-bit word aligned strings
Vasu Noria4356a02010-01-20 15:10:57 -08003577** of UTF-16 in the native byte order.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003578**
3579** A pointer to the user supplied routine must be passed as the fifth
Vasu Noria4356a02010-01-20 15:10:57 -08003580** argument. ^If it is NULL, this is the same as deleting the collation
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003581** sequence (so that SQLite cannot call it anymore).
Vasu Noria4356a02010-01-20 15:10:57 -08003582** ^Each time the application supplied function is invoked, it is passed
3583** as its first parameter a copy of the void* passed as the fourth argument
3584** to sqlite3_create_collation() or sqlite3_create_collation16().
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003585**
Vasu Noria4356a02010-01-20 15:10:57 -08003586** ^The remaining arguments to the application-supplied routine are two strings,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003587** each represented by a (length, data) pair and encoded in the encoding
3588** that was passed as the third argument when the collation sequence was
Vasu Noria4356a02010-01-20 15:10:57 -08003589** registered. The application defined collation routine should
3590** return negative, zero or positive if the first string is less than,
3591** equal to, or greater than the second string. i.e. (STRING1 - STRING2).
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003592**
Vasu Noria4356a02010-01-20 15:10:57 -08003593** ^The sqlite3_create_collation_v2() works like sqlite3_create_collation()
3594** except that it takes an extra argument which is a destructor for
3595** the collation. ^The destructor is called when the collation is
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003596** destroyed and is passed a copy of the fourth parameter void* pointer
3597** of the sqlite3_create_collation_v2().
Vasu Noria4356a02010-01-20 15:10:57 -08003598** ^Collations are destroyed when they are overridden by later calls to the
3599** collation creation functions or when the [database connection] is closed
3600** using [sqlite3_close()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003601**
Vasu Noria4356a02010-01-20 15:10:57 -08003602** See also: [sqlite3_collation_needed()] and [sqlite3_collation_needed16()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003603*/
Vasu Noria4356a02010-01-20 15:10:57 -08003604SQLITE_API int sqlite3_create_collation(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003605 sqlite3*,
3606 const char *zName,
3607 int eTextRep,
3608 void*,
3609 int(*xCompare)(void*,int,const void*,int,const void*)
3610);
Vasu Noria4356a02010-01-20 15:10:57 -08003611SQLITE_API int sqlite3_create_collation_v2(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003612 sqlite3*,
3613 const char *zName,
3614 int eTextRep,
3615 void*,
3616 int(*xCompare)(void*,int,const void*,int,const void*),
3617 void(*xDestroy)(void*)
3618);
Vasu Noria4356a02010-01-20 15:10:57 -08003619SQLITE_API int sqlite3_create_collation16(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003620 sqlite3*,
Vasu Noria4356a02010-01-20 15:10:57 -08003621 const void *zName,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003622 int eTextRep,
3623 void*,
3624 int(*xCompare)(void*,int,const void*,int,const void*)
3625);
3626
3627/*
Vasu Noria4356a02010-01-20 15:10:57 -08003628** CAPI3REF: Collation Needed Callbacks
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003629**
Vasu Noria4356a02010-01-20 15:10:57 -08003630** ^To avoid having to register all collation sequences before a database
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003631** can be used, a single callback function may be registered with the
Vasu Noria4356a02010-01-20 15:10:57 -08003632** [database connection] to be invoked whenever an undefined collation
3633** sequence is required.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003634**
Vasu Noria4356a02010-01-20 15:10:57 -08003635** ^If the function is registered using the sqlite3_collation_needed() API,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003636** then it is passed the names of undefined collation sequences as strings
Vasu Noria4356a02010-01-20 15:10:57 -08003637** encoded in UTF-8. ^If sqlite3_collation_needed16() is used,
3638** the names are passed as UTF-16 in machine native byte order.
3639** ^A call to either function replaces the existing collation-needed callback.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003640**
Vasu Noria4356a02010-01-20 15:10:57 -08003641** ^(When the callback is invoked, the first argument passed is a copy
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003642** of the second argument to sqlite3_collation_needed() or
3643** sqlite3_collation_needed16(). The second argument is the database
Vasu Noria4356a02010-01-20 15:10:57 -08003644** connection. The third argument is one of [SQLITE_UTF8], [SQLITE_UTF16BE],
3645** or [SQLITE_UTF16LE], indicating the most desirable form of the collation
3646** sequence function required. The fourth parameter is the name of the
3647** required collation sequence.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003648**
3649** The callback function should register the desired collation using
3650** [sqlite3_create_collation()], [sqlite3_create_collation16()], or
3651** [sqlite3_create_collation_v2()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003652*/
Vasu Noria4356a02010-01-20 15:10:57 -08003653SQLITE_API int sqlite3_collation_needed(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003654 sqlite3*,
3655 void*,
3656 void(*)(void*,sqlite3*,int eTextRep,const char*)
3657);
Vasu Noria4356a02010-01-20 15:10:57 -08003658SQLITE_API int sqlite3_collation_needed16(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003659 sqlite3*,
3660 void*,
3661 void(*)(void*,sqlite3*,int eTextRep,const void*)
3662);
3663
3664/*
3665** Specify the key for an encrypted database. This routine should be
3666** called right after sqlite3_open().
3667**
3668** The code to implement this API is not available in the public release
3669** of SQLite.
3670*/
Vasu Noria4356a02010-01-20 15:10:57 -08003671SQLITE_API int sqlite3_key(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003672 sqlite3 *db, /* Database to be rekeyed */
3673 const void *pKey, int nKey /* The key */
3674);
3675
3676/*
3677** Change the key on an open database. If the current database is not
3678** encrypted, this routine will encrypt it. If pNew==0 or nNew==0, the
3679** database is decrypted.
3680**
3681** The code to implement this API is not available in the public release
3682** of SQLite.
3683*/
Vasu Noria4356a02010-01-20 15:10:57 -08003684SQLITE_API int sqlite3_rekey(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003685 sqlite3 *db, /* Database to be rekeyed */
3686 const void *pKey, int nKey /* The new key */
3687);
3688
3689/*
Vasu Noria4356a02010-01-20 15:10:57 -08003690** CAPI3REF: Suspend Execution For A Short Time
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003691**
Vasu Noria4356a02010-01-20 15:10:57 -08003692** ^The sqlite3_sleep() function causes the current thread to suspend execution
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003693** for at least a number of milliseconds specified in its parameter.
3694**
Vasu Noria4356a02010-01-20 15:10:57 -08003695** ^If the operating system does not support sleep requests with
3696** millisecond time resolution, then the time will be rounded up to
3697** the nearest second. ^The number of milliseconds of sleep actually
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003698** requested from the operating system is returned.
3699**
Vasu Noria4356a02010-01-20 15:10:57 -08003700** ^SQLite implements this interface by calling the xSleep()
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003701** method of the default [sqlite3_vfs] object.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003702*/
Vasu Noria4356a02010-01-20 15:10:57 -08003703SQLITE_API int sqlite3_sleep(int);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003704
3705/*
Vasu Noria4356a02010-01-20 15:10:57 -08003706** CAPI3REF: Name Of The Folder Holding Temporary Files
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003707**
Vasu Noria4356a02010-01-20 15:10:57 -08003708** ^(If this global variable is made to point to a string which is
3709** the name of a folder (a.k.a. directory), then all temporary files
3710** created by SQLite when using a built-in [sqlite3_vfs | VFS]
3711** will be placed in that directory.)^ ^If this variable
3712** is a NULL pointer, then SQLite performs a search for an appropriate
3713** temporary file directory.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003714**
Vasu Noria4356a02010-01-20 15:10:57 -08003715** It is not safe to read or modify this variable in more than one
3716** thread at a time. It is not safe to read or modify this variable
3717** if a [database connection] is being used at the same time in a separate
3718** thread.
3719** It is intended that this variable be set once
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003720** as part of process initialization and before any SQLite interface
Vasu Noria4356a02010-01-20 15:10:57 -08003721** routines have been called and that this variable remain unchanged
3722** thereafter.
3723**
3724** ^The [temp_store_directory pragma] may modify this variable and cause
3725** it to point to memory obtained from [sqlite3_malloc]. ^Furthermore,
3726** the [temp_store_directory pragma] always assumes that any string
3727** that this variable points to is held in memory obtained from
3728** [sqlite3_malloc] and the pragma may attempt to free that memory
3729** using [sqlite3_free].
3730** Hence, if this variable is modified directly, either it should be
3731** made NULL or made to point to memory obtained from [sqlite3_malloc]
3732** or else the use of the [temp_store_directory pragma] should be avoided.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003733*/
Vasu Noria4356a02010-01-20 15:10:57 -08003734SQLITE_API SQLITE_EXTERN char *sqlite3_temp_directory;
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003735
3736/*
Vasu Noria4356a02010-01-20 15:10:57 -08003737** CAPI3REF: Test For Auto-Commit Mode
3738** KEYWORDS: {autocommit mode}
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003739**
Vasu Noria4356a02010-01-20 15:10:57 -08003740** ^The sqlite3_get_autocommit() interface returns non-zero or
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003741** zero if the given database connection is or is not in autocommit mode,
Vasu Noria4356a02010-01-20 15:10:57 -08003742** respectively. ^Autocommit mode is on by default.
3743** ^Autocommit mode is disabled by a [BEGIN] statement.
3744** ^Autocommit mode is re-enabled by a [COMMIT] or [ROLLBACK].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003745**
3746** If certain kinds of errors occur on a statement within a multi-statement
Vasu Noria4356a02010-01-20 15:10:57 -08003747** transaction (errors including [SQLITE_FULL], [SQLITE_IOERR],
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003748** [SQLITE_NOMEM], [SQLITE_BUSY], and [SQLITE_INTERRUPT]) then the
3749** transaction might be rolled back automatically. The only way to
Vasu Noria4356a02010-01-20 15:10:57 -08003750** find out whether SQLite automatically rolled back the transaction after
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003751** an error is to use this function.
3752**
Vasu Noria4356a02010-01-20 15:10:57 -08003753** If another thread changes the autocommit status of the database
3754** connection while this routine is running, then the return value
3755** is undefined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003756*/
Vasu Noria4356a02010-01-20 15:10:57 -08003757SQLITE_API int sqlite3_get_autocommit(sqlite3*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003758
3759/*
Vasu Noria4356a02010-01-20 15:10:57 -08003760** CAPI3REF: Find The Database Handle Of A Prepared Statement
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003761**
Vasu Noria4356a02010-01-20 15:10:57 -08003762** ^The sqlite3_db_handle interface returns the [database connection] handle
3763** to which a [prepared statement] belongs. ^The [database connection]
3764** returned by sqlite3_db_handle is the same [database connection]
3765** that was the first argument
3766** to the [sqlite3_prepare_v2()] call (or its variants) that was used to
3767** create the statement in the first place.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003768*/
Vasu Noria4356a02010-01-20 15:10:57 -08003769SQLITE_API sqlite3 *sqlite3_db_handle(sqlite3_stmt*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003770
3771/*
Vasu Noria4356a02010-01-20 15:10:57 -08003772** CAPI3REF: Find the next prepared statement
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003773**
Vasu Noria4356a02010-01-20 15:10:57 -08003774** ^This interface returns a pointer to the next [prepared statement] after
3775** pStmt associated with the [database connection] pDb. ^If pStmt is NULL
3776** then this interface returns a pointer to the first prepared statement
3777** associated with the database connection pDb. ^If no prepared statement
3778** satisfies the conditions of this routine, it returns NULL.
3779**
3780** The [database connection] pointer D in a call to
3781** [sqlite3_next_stmt(D,S)] must refer to an open database
3782** connection and in particular must not be a NULL pointer.
3783*/
3784SQLITE_API sqlite3_stmt *sqlite3_next_stmt(sqlite3 *pDb, sqlite3_stmt *pStmt);
3785
3786/*
3787** CAPI3REF: Commit And Rollback Notification Callbacks
3788**
3789** ^The sqlite3_commit_hook() interface registers a callback
3790** function to be invoked whenever a transaction is [COMMIT | committed].
3791** ^Any callback set by a previous call to sqlite3_commit_hook()
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003792** for the same database connection is overridden.
Vasu Noria4356a02010-01-20 15:10:57 -08003793** ^The sqlite3_rollback_hook() interface registers a callback
3794** function to be invoked whenever a transaction is [ROLLBACK | rolled back].
3795** ^Any callback set by a previous call to sqlite3_rollback_hook()
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003796** for the same database connection is overridden.
Vasu Noria4356a02010-01-20 15:10:57 -08003797** ^The pArg argument is passed through to the callback.
3798** ^If the callback on a commit hook function returns non-zero,
3799** then the commit is converted into a rollback.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003800**
Vasu Noria4356a02010-01-20 15:10:57 -08003801** ^The sqlite3_commit_hook(D,C,P) and sqlite3_rollback_hook(D,C,P) functions
3802** return the P argument from the previous call of the same function
3803** on the same [database connection] D, or NULL for
3804** the first call for each function on D.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003805**
Vasu Noria4356a02010-01-20 15:10:57 -08003806** The callback implementation must not do anything that will modify
3807** the database connection that invoked the callback. Any actions
3808** to modify the database connection must be deferred until after the
3809** completion of the [sqlite3_step()] call that triggered the commit
3810** or rollback hook in the first place.
3811** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
3812** database connections for the meaning of "modify" in this paragraph.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003813**
Vasu Noria4356a02010-01-20 15:10:57 -08003814** ^Registering a NULL function disables the callback.
3815**
3816** ^When the commit hook callback routine returns zero, the [COMMIT]
3817** operation is allowed to continue normally. ^If the commit hook
3818** returns non-zero, then the [COMMIT] is converted into a [ROLLBACK].
3819** ^The rollback hook is invoked on a rollback that results from a commit
3820** hook returning non-zero, just as it would be with any other rollback.
3821**
3822** ^For the purposes of this API, a transaction is said to have been
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003823** rolled back if an explicit "ROLLBACK" statement is executed, or
3824** an error or constraint causes an implicit rollback to occur.
Vasu Noria4356a02010-01-20 15:10:57 -08003825** ^The rollback callback is not invoked if a transaction is
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003826** automatically rolled back because the database connection is closed.
Vasu Noria4356a02010-01-20 15:10:57 -08003827** ^The rollback callback is not invoked if a transaction is
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003828** rolled back because a commit callback returned non-zero.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003829**
Vasu Noria4356a02010-01-20 15:10:57 -08003830** See also the [sqlite3_update_hook()] interface.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003831*/
Vasu Noria4356a02010-01-20 15:10:57 -08003832SQLITE_API void *sqlite3_commit_hook(sqlite3*, int(*)(void*), void*);
3833SQLITE_API void *sqlite3_rollback_hook(sqlite3*, void(*)(void *), void*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003834
3835/*
Vasu Noria4356a02010-01-20 15:10:57 -08003836** CAPI3REF: Data Change Notification Callbacks
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003837**
Vasu Noria4356a02010-01-20 15:10:57 -08003838** ^The sqlite3_update_hook() interface registers a callback function
3839** with the [database connection] identified by the first argument
3840** to be invoked whenever a row is updated, inserted or deleted.
3841** ^Any callback set by a previous call to this function
3842** for the same database connection is overridden.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003843**
Vasu Noria4356a02010-01-20 15:10:57 -08003844** ^The second argument is a pointer to the function to invoke when a
3845** row is updated, inserted or deleted.
3846** ^The first argument to the callback is a copy of the third argument
3847** to sqlite3_update_hook().
3848** ^The second callback argument is one of [SQLITE_INSERT], [SQLITE_DELETE],
3849** or [SQLITE_UPDATE], depending on the operation that caused the callback
3850** to be invoked.
3851** ^The third and fourth arguments to the callback contain pointers to the
3852** database and table name containing the affected row.
3853** ^The final callback parameter is the [rowid] of the row.
3854** ^In the case of an update, this is the [rowid] after the update takes place.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003855**
Vasu Noria4356a02010-01-20 15:10:57 -08003856** ^(The update hook is not invoked when internal system tables are
3857** modified (i.e. sqlite_master and sqlite_sequence).)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003858**
Vasu Noria4356a02010-01-20 15:10:57 -08003859** ^In the current implementation, the update hook
3860** is not invoked when duplication rows are deleted because of an
3861** [ON CONFLICT | ON CONFLICT REPLACE] clause. ^Nor is the update hook
3862** invoked when rows are deleted using the [truncate optimization].
3863** The exceptions defined in this paragraph might change in a future
3864** release of SQLite.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003865**
Vasu Noria4356a02010-01-20 15:10:57 -08003866** The update hook implementation must not do anything that will modify
3867** the database connection that invoked the update hook. Any actions
3868** to modify the database connection must be deferred until after the
3869** completion of the [sqlite3_step()] call that triggered the update hook.
3870** Note that [sqlite3_prepare_v2()] and [sqlite3_step()] both modify their
3871** database connections for the meaning of "modify" in this paragraph.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003872**
Vasu Noria4356a02010-01-20 15:10:57 -08003873** ^The sqlite3_update_hook(D,C,P) function
3874** returns the P argument from the previous call
3875** on the same [database connection] D, or NULL for
3876** the first call on D.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003877**
Vasu Noria4356a02010-01-20 15:10:57 -08003878** See also the [sqlite3_commit_hook()] and [sqlite3_rollback_hook()]
3879** interfaces.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003880*/
Vasu Noria4356a02010-01-20 15:10:57 -08003881SQLITE_API void *sqlite3_update_hook(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003882 sqlite3*,
3883 void(*)(void *,int ,char const *,char const *,sqlite3_int64),
3884 void*
3885);
3886
3887/*
Vasu Noria4356a02010-01-20 15:10:57 -08003888** CAPI3REF: Enable Or Disable Shared Pager Cache
3889** KEYWORDS: {shared cache}
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003890**
Vasu Noria4356a02010-01-20 15:10:57 -08003891** ^(This routine enables or disables the sharing of the database cache
3892** and schema data structures between [database connection | connections]
3893** to the same database. Sharing is enabled if the argument is true
3894** and disabled if the argument is false.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003895**
Vasu Noria4356a02010-01-20 15:10:57 -08003896** ^Cache sharing is enabled and disabled for an entire process.
3897** This is a change as of SQLite version 3.5.0. In prior versions of SQLite,
3898** sharing was enabled or disabled for each thread separately.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003899**
Vasu Noria4356a02010-01-20 15:10:57 -08003900** ^(The cache sharing mode set by this interface effects all subsequent
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003901** calls to [sqlite3_open()], [sqlite3_open_v2()], and [sqlite3_open16()].
3902** Existing database connections continue use the sharing mode
Vasu Noria4356a02010-01-20 15:10:57 -08003903** that was in effect at the time they were opened.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003904**
Vasu Noria4356a02010-01-20 15:10:57 -08003905** ^(This routine returns [SQLITE_OK] if shared cache was enabled or disabled
3906** successfully. An [error code] is returned otherwise.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003907**
Vasu Noria4356a02010-01-20 15:10:57 -08003908** ^Shared cache is disabled by default. But this might change in
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003909** future releases of SQLite. Applications that care about shared
3910** cache setting should set it explicitly.
3911**
Vasu Noria4356a02010-01-20 15:10:57 -08003912** See Also: [SQLite Shared-Cache Mode]
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003913*/
Vasu Noria4356a02010-01-20 15:10:57 -08003914SQLITE_API int sqlite3_enable_shared_cache(int);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003915
3916/*
Vasu Noria4356a02010-01-20 15:10:57 -08003917** CAPI3REF: Attempt To Free Heap Memory
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003918**
Vasu Noria4356a02010-01-20 15:10:57 -08003919** ^The sqlite3_release_memory() interface attempts to free N bytes
3920** of heap memory by deallocating non-essential memory allocations
3921** held by the database library. Memory used to cache database
3922** pages to improve performance is an example of non-essential memory.
3923** ^sqlite3_release_memory() returns the number of bytes actually freed,
3924** which might be more or less than the amount requested.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003925*/
Vasu Noria4356a02010-01-20 15:10:57 -08003926SQLITE_API int sqlite3_release_memory(int);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003927
3928/*
Vasu Noria4356a02010-01-20 15:10:57 -08003929** CAPI3REF: Impose A Limit On Heap Size
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003930**
Vasu Noria4356a02010-01-20 15:10:57 -08003931** ^The sqlite3_soft_heap_limit() interface places a "soft" limit
3932** on the amount of heap memory that may be allocated by SQLite.
3933** ^If an internal allocation is requested that would exceed the
3934** soft heap limit, [sqlite3_release_memory()] is invoked one or
3935** more times to free up some space before the allocation is performed.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003936**
Vasu Noria4356a02010-01-20 15:10:57 -08003937** ^The limit is called "soft" because if [sqlite3_release_memory()]
3938** cannot free sufficient memory to prevent the limit from being exceeded,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003939** the memory is allocated anyway and the current operation proceeds.
3940**
Vasu Noria4356a02010-01-20 15:10:57 -08003941** ^A negative or zero value for N means that there is no soft heap limit and
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003942** [sqlite3_release_memory()] will only be called when memory is exhausted.
Vasu Noria4356a02010-01-20 15:10:57 -08003943** ^The default value for the soft heap limit is zero.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003944**
Vasu Noria4356a02010-01-20 15:10:57 -08003945** ^(SQLite makes a best effort to honor the soft heap limit.
3946** But if the soft heap limit cannot be honored, execution will
3947** continue without error or notification.)^ This is why the limit is
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003948** called a "soft" limit. It is advisory only.
3949**
3950** Prior to SQLite version 3.5.0, this routine only constrained the memory
3951** allocated by a single thread - the same thread in which this routine
3952** runs. Beginning with SQLite version 3.5.0, the soft heap limit is
3953** applied to all threads. The value specified for the soft heap limit
3954** is an upper bound on the total memory allocation for all threads. In
3955** version 3.5.0 there is no mechanism for limiting the heap usage for
3956** individual threads.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003957*/
Vasu Noria4356a02010-01-20 15:10:57 -08003958SQLITE_API void sqlite3_soft_heap_limit(int);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003959
3960/*
Vasu Noria4356a02010-01-20 15:10:57 -08003961** CAPI3REF: Extract Metadata About A Column Of A Table
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003962**
Vasu Noria4356a02010-01-20 15:10:57 -08003963** ^This routine returns metadata about a specific column of a specific
3964** database table accessible using the [database connection] handle
3965** passed as the first function argument.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003966**
Vasu Noria4356a02010-01-20 15:10:57 -08003967** ^The column is identified by the second, third and fourth parameters to
3968** this function. ^The second parameter is either the name of the database
3969** (i.e. "main", "temp", or an attached database) containing the specified
3970** table or NULL. ^If it is NULL, then all attached databases are searched
3971** for the table using the same algorithm used by the database engine to
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003972** resolve unqualified table references.
3973**
Vasu Noria4356a02010-01-20 15:10:57 -08003974** ^The third and fourth parameters to this function are the table and column
3975** name of the desired column, respectively. Neither of these parameters
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003976** may be NULL.
3977**
Vasu Noria4356a02010-01-20 15:10:57 -08003978** ^Metadata is returned by writing to the memory locations passed as the 5th
3979** and subsequent parameters to this function. ^Any of these arguments may be
3980** NULL, in which case the corresponding element of metadata is omitted.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003981**
Vasu Noria4356a02010-01-20 15:10:57 -08003982** ^(<blockquote>
3983** <table border="1">
3984** <tr><th> Parameter <th> Output<br>Type <th> Description
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003985**
Vasu Noria4356a02010-01-20 15:10:57 -08003986** <tr><td> 5th <td> const char* <td> Data type
3987** <tr><td> 6th <td> const char* <td> Name of default collation sequence
3988** <tr><td> 7th <td> int <td> True if column has a NOT NULL constraint
3989** <tr><td> 8th <td> int <td> True if column is part of the PRIMARY KEY
3990** <tr><td> 9th <td> int <td> True if column is [AUTOINCREMENT]
3991** </table>
3992** </blockquote>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003993**
Vasu Noria4356a02010-01-20 15:10:57 -08003994** ^The memory pointed to by the character pointers returned for the
3995** declaration type and collation sequence is valid only until the next
3996** call to any SQLite API function.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003997**
Vasu Noria4356a02010-01-20 15:10:57 -08003998** ^If the specified table is actually a view, an [error code] is returned.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08003999**
Vasu Noria4356a02010-01-20 15:10:57 -08004000** ^If the specified column is "rowid", "oid" or "_rowid_" and an
4001** [INTEGER PRIMARY KEY] column has been explicitly declared, then the output
4002** parameters are set for the explicitly declared column. ^(If there is no
4003** explicitly declared [INTEGER PRIMARY KEY] column, then the output
4004** parameters are set as follows:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004005**
4006** <pre>
4007** data type: "INTEGER"
4008** collation sequence: "BINARY"
4009** not null: 0
4010** primary key: 1
4011** auto increment: 0
Vasu Noria4356a02010-01-20 15:10:57 -08004012** </pre>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004013**
Vasu Noria4356a02010-01-20 15:10:57 -08004014** ^(This function may load one or more schemas from database files. If an
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004015** error occurs during this process, or if the requested table or column
Vasu Noria4356a02010-01-20 15:10:57 -08004016** cannot be found, an [error code] is returned and an error message left
4017** in the [database connection] (to be retrieved using sqlite3_errmsg()).)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004018**
Vasu Noria4356a02010-01-20 15:10:57 -08004019** ^This API is only available if the library was compiled with the
4020** [SQLITE_ENABLE_COLUMN_METADATA] C-preprocessor symbol defined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004021*/
Vasu Noria4356a02010-01-20 15:10:57 -08004022SQLITE_API int sqlite3_table_column_metadata(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004023 sqlite3 *db, /* Connection handle */
4024 const char *zDbName, /* Database name or NULL */
4025 const char *zTableName, /* Table name */
4026 const char *zColumnName, /* Column name */
4027 char const **pzDataType, /* OUTPUT: Declared data type */
4028 char const **pzCollSeq, /* OUTPUT: Collation sequence name */
4029 int *pNotNull, /* OUTPUT: True if NOT NULL constraint exists */
4030 int *pPrimaryKey, /* OUTPUT: True if column part of PK */
4031 int *pAutoinc /* OUTPUT: True if column is auto-increment */
4032);
4033
4034/*
Vasu Noria4356a02010-01-20 15:10:57 -08004035** CAPI3REF: Load An Extension
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004036**
Vasu Noria4356a02010-01-20 15:10:57 -08004037** ^This interface loads an SQLite extension library from the named file.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004038**
Vasu Noria4356a02010-01-20 15:10:57 -08004039** ^The sqlite3_load_extension() interface attempts to load an
4040** SQLite extension library contained in the file zFile.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004041**
Vasu Noria4356a02010-01-20 15:10:57 -08004042** ^The entry point is zProc.
4043** ^zProc may be 0, in which case the name of the entry point
4044** defaults to "sqlite3_extension_init".
4045** ^The sqlite3_load_extension() interface returns
4046** [SQLITE_OK] on success and [SQLITE_ERROR] if something goes wrong.
4047** ^If an error occurs and pzErrMsg is not 0, then the
4048** [sqlite3_load_extension()] interface shall attempt to
4049** fill *pzErrMsg with error message text stored in memory
4050** obtained from [sqlite3_malloc()]. The calling function
4051** should free this memory by calling [sqlite3_free()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004052**
Vasu Noria4356a02010-01-20 15:10:57 -08004053** ^Extension loading must be enabled using
4054** [sqlite3_enable_load_extension()] prior to calling this API,
4055** otherwise an error will be returned.
4056**
4057** See also the [load_extension() SQL function].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004058*/
Vasu Noria4356a02010-01-20 15:10:57 -08004059SQLITE_API int sqlite3_load_extension(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004060 sqlite3 *db, /* Load the extension into this database connection */
4061 const char *zFile, /* Name of the shared library containing extension */
4062 const char *zProc, /* Entry point. Derived from zFile if 0 */
4063 char **pzErrMsg /* Put error message here if not 0 */
4064);
4065
4066/*
Vasu Noria4356a02010-01-20 15:10:57 -08004067** CAPI3REF: Enable Or Disable Extension Loading
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004068**
Vasu Noria4356a02010-01-20 15:10:57 -08004069** ^So as not to open security holes in older applications that are
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004070** unprepared to deal with extension loading, and as a means of disabling
Vasu Noria4356a02010-01-20 15:10:57 -08004071** extension loading while evaluating user-entered SQL, the following API
4072** is provided to turn the [sqlite3_load_extension()] mechanism on and off.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004073**
Vasu Noria4356a02010-01-20 15:10:57 -08004074** ^Extension loading is off by default. See ticket #1863.
4075** ^Call the sqlite3_enable_load_extension() routine with onoff==1
4076** to turn extension loading on and call it with onoff==0 to turn
4077** it back off again.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004078*/
Vasu Noria4356a02010-01-20 15:10:57 -08004079SQLITE_API int sqlite3_enable_load_extension(sqlite3 *db, int onoff);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004080
4081/*
Vasu Noria4356a02010-01-20 15:10:57 -08004082** CAPI3REF: Automatically Load An Extensions
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004083**
Vasu Noria4356a02010-01-20 15:10:57 -08004084** ^This API can be invoked at program startup in order to register
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004085** one or more statically linked extensions that will be available
Vasu Noria4356a02010-01-20 15:10:57 -08004086** to all new [database connections].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004087**
Vasu Noria4356a02010-01-20 15:10:57 -08004088** ^(This routine stores a pointer to the extension entry point
4089** in an array that is obtained from [sqlite3_malloc()]. That memory
4090** is deallocated by [sqlite3_reset_auto_extension()].)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004091**
Vasu Noria4356a02010-01-20 15:10:57 -08004092** ^This function registers an extension entry point that is
4093** automatically invoked whenever a new [database connection]
4094** is opened using [sqlite3_open()], [sqlite3_open16()],
4095** or [sqlite3_open_v2()].
4096** ^Duplicate extensions are detected so calling this routine
4097** multiple times with the same extension is harmless.
4098** ^Automatic extensions apply across all threads.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004099*/
Vasu Noria4356a02010-01-20 15:10:57 -08004100SQLITE_API int sqlite3_auto_extension(void (*xEntryPoint)(void));
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004101
4102/*
Vasu Noria4356a02010-01-20 15:10:57 -08004103** CAPI3REF: Reset Automatic Extension Loading
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004104**
Vasu Noria4356a02010-01-20 15:10:57 -08004105** ^(This function disables all previously registered automatic
4106** extensions. It undoes the effect of all prior
4107** [sqlite3_auto_extension()] calls.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004108**
Vasu Noria4356a02010-01-20 15:10:57 -08004109** ^This function disables automatic extensions in all threads.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004110*/
Vasu Noria4356a02010-01-20 15:10:57 -08004111SQLITE_API void sqlite3_reset_auto_extension(void);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004112
4113/*
4114****** EXPERIMENTAL - subject to change without notice **************
4115**
4116** The interface to the virtual-table mechanism is currently considered
4117** to be experimental. The interface might change in incompatible ways.
4118** If this is a problem for you, do not use the interface at this time.
4119**
Vasu Noria4356a02010-01-20 15:10:57 -08004120** When the virtual-table mechanism stabilizes, we will declare the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004121** interface fixed, support it indefinitely, and remove this comment.
4122*/
4123
4124/*
4125** Structures used by the virtual table interface
4126*/
4127typedef struct sqlite3_vtab sqlite3_vtab;
4128typedef struct sqlite3_index_info sqlite3_index_info;
4129typedef struct sqlite3_vtab_cursor sqlite3_vtab_cursor;
4130typedef struct sqlite3_module sqlite3_module;
4131
4132/*
Vasu Noria4356a02010-01-20 15:10:57 -08004133** CAPI3REF: Virtual Table Object
4134** KEYWORDS: sqlite3_module {virtual table module}
4135** EXPERIMENTAL
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004136**
Vasu Noria4356a02010-01-20 15:10:57 -08004137** This structure, sometimes called a a "virtual table module",
4138** defines the implementation of a [virtual tables].
4139** This structure consists mostly of methods for the module.
4140**
4141** ^A virtual table module is created by filling in a persistent
4142** instance of this structure and passing a pointer to that instance
4143** to [sqlite3_create_module()] or [sqlite3_create_module_v2()].
4144** ^The registration remains valid until it is replaced by a different
4145** module or until the [database connection] closes. The content
4146** of this structure must not change while it is registered with
4147** any database connection.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004148*/
4149struct sqlite3_module {
4150 int iVersion;
4151 int (*xCreate)(sqlite3*, void *pAux,
4152 int argc, const char *const*argv,
4153 sqlite3_vtab **ppVTab, char**);
4154 int (*xConnect)(sqlite3*, void *pAux,
4155 int argc, const char *const*argv,
4156 sqlite3_vtab **ppVTab, char**);
4157 int (*xBestIndex)(sqlite3_vtab *pVTab, sqlite3_index_info*);
4158 int (*xDisconnect)(sqlite3_vtab *pVTab);
4159 int (*xDestroy)(sqlite3_vtab *pVTab);
4160 int (*xOpen)(sqlite3_vtab *pVTab, sqlite3_vtab_cursor **ppCursor);
4161 int (*xClose)(sqlite3_vtab_cursor*);
4162 int (*xFilter)(sqlite3_vtab_cursor*, int idxNum, const char *idxStr,
4163 int argc, sqlite3_value **argv);
4164 int (*xNext)(sqlite3_vtab_cursor*);
4165 int (*xEof)(sqlite3_vtab_cursor*);
4166 int (*xColumn)(sqlite3_vtab_cursor*, sqlite3_context*, int);
4167 int (*xRowid)(sqlite3_vtab_cursor*, sqlite3_int64 *pRowid);
4168 int (*xUpdate)(sqlite3_vtab *, int, sqlite3_value **, sqlite3_int64 *);
4169 int (*xBegin)(sqlite3_vtab *pVTab);
4170 int (*xSync)(sqlite3_vtab *pVTab);
4171 int (*xCommit)(sqlite3_vtab *pVTab);
4172 int (*xRollback)(sqlite3_vtab *pVTab);
4173 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
4174 void (**pxFunc)(sqlite3_context*,int,sqlite3_value**),
4175 void **ppArg);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004176 int (*xRename)(sqlite3_vtab *pVtab, const char *zNew);
4177};
4178
4179/*
Vasu Noria4356a02010-01-20 15:10:57 -08004180** CAPI3REF: Virtual Table Indexing Information
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004181** KEYWORDS: sqlite3_index_info
Vasu Noria4356a02010-01-20 15:10:57 -08004182** EXPERIMENTAL
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004183**
4184** The sqlite3_index_info structure and its substructures is used to
Vasu Noria4356a02010-01-20 15:10:57 -08004185** pass information into and receive the reply from the [xBestIndex]
4186** method of a [virtual table module]. The fields under **Inputs** are the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004187** inputs to xBestIndex and are read-only. xBestIndex inserts its
4188** results into the **Outputs** fields.
4189**
Vasu Noria4356a02010-01-20 15:10:57 -08004190** ^(The aConstraint[] array records WHERE clause constraints of the form:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004191**
Vasu Noria4356a02010-01-20 15:10:57 -08004192** <pre>column OP expr</pre>
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004193**
Vasu Noria4356a02010-01-20 15:10:57 -08004194** where OP is =, &lt;, &lt;=, &gt;, or &gt;=.)^ ^(The particular operator is
4195** stored in aConstraint[].op.)^ ^(The index of the column is stored in
4196** aConstraint[].iColumn.)^ ^(aConstraint[].usable is TRUE if the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004197** expr on the right-hand side can be evaluated (and thus the constraint
Vasu Noria4356a02010-01-20 15:10:57 -08004198** is usable) and false if it cannot.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004199**
Vasu Noria4356a02010-01-20 15:10:57 -08004200** ^The optimizer automatically inverts terms of the form "expr OP column"
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004201** and makes other simplifications to the WHERE clause in an attempt to
4202** get as many WHERE clause terms into the form shown above as possible.
Vasu Noria4356a02010-01-20 15:10:57 -08004203** ^The aConstraint[] array only reports WHERE clause terms that are
4204** relevant to the particular virtual table being queried.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004205**
Vasu Noria4356a02010-01-20 15:10:57 -08004206** ^Information about the ORDER BY clause is stored in aOrderBy[].
4207** ^Each term of aOrderBy records a column of the ORDER BY clause.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004208**
Vasu Noria4356a02010-01-20 15:10:57 -08004209** The [xBestIndex] method must fill aConstraintUsage[] with information
4210** about what parameters to pass to xFilter. ^If argvIndex>0 then
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004211** the right-hand side of the corresponding aConstraint[] is evaluated
Vasu Noria4356a02010-01-20 15:10:57 -08004212** and becomes the argvIndex-th entry in argv. ^(If aConstraintUsage[].omit
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004213** is true, then the constraint is assumed to be fully handled by the
Vasu Noria4356a02010-01-20 15:10:57 -08004214** virtual table and is not checked again by SQLite.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004215**
Vasu Noria4356a02010-01-20 15:10:57 -08004216** ^The idxNum and idxPtr values are recorded and passed into the
4217** [xFilter] method.
4218** ^[sqlite3_free()] is used to free idxPtr if and only if
4219** needToFreeIdxPtr is true.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004220**
Vasu Noria4356a02010-01-20 15:10:57 -08004221** ^The orderByConsumed means that output from [xFilter]/[xNext] will occur in
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004222** the correct order to satisfy the ORDER BY clause so that no separate
4223** sorting step is required.
4224**
Vasu Noria4356a02010-01-20 15:10:57 -08004225** ^The estimatedCost value is an estimate of the cost of doing the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004226** particular lookup. A full scan of a table with N entries should have
4227** a cost of N. A binary search of a table of N entries should have a
4228** cost of approximately log(N).
4229*/
4230struct sqlite3_index_info {
4231 /* Inputs */
4232 int nConstraint; /* Number of entries in aConstraint */
4233 struct sqlite3_index_constraint {
4234 int iColumn; /* Column on left-hand side of constraint */
4235 unsigned char op; /* Constraint operator */
4236 unsigned char usable; /* True if this constraint is usable */
4237 int iTermOffset; /* Used internally - xBestIndex should ignore */
4238 } *aConstraint; /* Table of WHERE clause constraints */
4239 int nOrderBy; /* Number of terms in the ORDER BY clause */
4240 struct sqlite3_index_orderby {
4241 int iColumn; /* Column number */
4242 unsigned char desc; /* True for DESC. False for ASC. */
4243 } *aOrderBy; /* The ORDER BY clause */
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004244 /* Outputs */
4245 struct sqlite3_index_constraint_usage {
4246 int argvIndex; /* if >0, constraint is part of argv to xFilter */
4247 unsigned char omit; /* Do not code a test for this constraint */
4248 } *aConstraintUsage;
4249 int idxNum; /* Number used to identify the index */
4250 char *idxStr; /* String, possibly obtained from sqlite3_malloc */
4251 int needToFreeIdxStr; /* Free idxStr using sqlite3_free() if true */
4252 int orderByConsumed; /* True if output is already ordered */
4253 double estimatedCost; /* Estimated cost of using this index */
4254};
4255#define SQLITE_INDEX_CONSTRAINT_EQ 2
4256#define SQLITE_INDEX_CONSTRAINT_GT 4
4257#define SQLITE_INDEX_CONSTRAINT_LE 8
4258#define SQLITE_INDEX_CONSTRAINT_LT 16
4259#define SQLITE_INDEX_CONSTRAINT_GE 32
4260#define SQLITE_INDEX_CONSTRAINT_MATCH 64
4261
4262/*
Vasu Noria4356a02010-01-20 15:10:57 -08004263** CAPI3REF: Register A Virtual Table Implementation
4264** EXPERIMENTAL
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004265**
Vasu Noria4356a02010-01-20 15:10:57 -08004266** ^These routines are used to register a new [virtual table module] name.
4267** ^Module names must be registered before
4268** creating a new [virtual table] using the module and before using a
4269** preexisting [virtual table] for the module.
4270**
4271** ^The module name is registered on the [database connection] specified
4272** by the first parameter. ^The name of the module is given by the
4273** second parameter. ^The third parameter is a pointer to
4274** the implementation of the [virtual table module]. ^The fourth
4275** parameter is an arbitrary client data pointer that is passed through
4276** into the [xCreate] and [xConnect] methods of the virtual table module
4277** when a new virtual table is be being created or reinitialized.
4278**
4279** ^The sqlite3_create_module_v2() interface has a fifth parameter which
4280** is a pointer to a destructor for the pClientData. ^SQLite will
4281** invoke the destructor function (if it is not NULL) when SQLite
4282** no longer needs the pClientData pointer. ^The sqlite3_create_module()
4283** interface is equivalent to sqlite3_create_module_v2() with a NULL
4284** destructor.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004285*/
Vasu Noria4356a02010-01-20 15:10:57 -08004286SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_create_module(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004287 sqlite3 *db, /* SQLite connection to register module with */
4288 const char *zName, /* Name of the module */
Vasu Noria4356a02010-01-20 15:10:57 -08004289 const sqlite3_module *p, /* Methods for the module */
4290 void *pClientData /* Client data for xCreate/xConnect */
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004291);
Vasu Noria4356a02010-01-20 15:10:57 -08004292SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_create_module_v2(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004293 sqlite3 *db, /* SQLite connection to register module with */
4294 const char *zName, /* Name of the module */
Vasu Noria4356a02010-01-20 15:10:57 -08004295 const sqlite3_module *p, /* Methods for the module */
4296 void *pClientData, /* Client data for xCreate/xConnect */
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004297 void(*xDestroy)(void*) /* Module destructor function */
4298);
4299
4300/*
Vasu Noria4356a02010-01-20 15:10:57 -08004301** CAPI3REF: Virtual Table Instance Object
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004302** KEYWORDS: sqlite3_vtab
Vasu Noria4356a02010-01-20 15:10:57 -08004303** EXPERIMENTAL
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004304**
Vasu Noria4356a02010-01-20 15:10:57 -08004305** Every [virtual table module] implementation uses a subclass
4306** of this object to describe a particular instance
4307** of the [virtual table]. Each subclass will
4308** be tailored to the specific needs of the module implementation.
4309** The purpose of this superclass is to define certain fields that are
4310** common to all module implementations.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004311**
Vasu Noria4356a02010-01-20 15:10:57 -08004312** ^Virtual tables methods can set an error message by assigning a
4313** string obtained from [sqlite3_mprintf()] to zErrMsg. The method should
4314** take care that any prior string is freed by a call to [sqlite3_free()]
4315** prior to assigning a new string to zErrMsg. ^After the error message
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004316** is delivered up to the client application, the string will be automatically
Vasu Noria4356a02010-01-20 15:10:57 -08004317** freed by sqlite3_free() and the zErrMsg field will be zeroed.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004318*/
4319struct sqlite3_vtab {
4320 const sqlite3_module *pModule; /* The module for this virtual table */
Vasu Noria4356a02010-01-20 15:10:57 -08004321 int nRef; /* NO LONGER USED */
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004322 char *zErrMsg; /* Error message from sqlite3_mprintf() */
4323 /* Virtual table implementations will typically add additional fields */
4324};
4325
4326/*
Vasu Noria4356a02010-01-20 15:10:57 -08004327** CAPI3REF: Virtual Table Cursor Object
4328** KEYWORDS: sqlite3_vtab_cursor {virtual table cursor}
4329** EXPERIMENTAL
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004330**
Vasu Noria4356a02010-01-20 15:10:57 -08004331** Every [virtual table module] implementation uses a subclass of the
4332** following structure to describe cursors that point into the
4333** [virtual table] and are used
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004334** to loop through the virtual table. Cursors are created using the
Vasu Noria4356a02010-01-20 15:10:57 -08004335** [sqlite3_module.xOpen | xOpen] method of the module and are destroyed
4336** by the [sqlite3_module.xClose | xClose] method. Cursors are used
4337** by the [xFilter], [xNext], [xEof], [xColumn], and [xRowid] methods
4338** of the module. Each module implementation will define
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004339** the content of a cursor structure to suit its own needs.
4340**
4341** This superclass exists in order to define fields of the cursor that
4342** are common to all implementations.
4343*/
4344struct sqlite3_vtab_cursor {
4345 sqlite3_vtab *pVtab; /* Virtual table of this cursor */
4346 /* Virtual table implementations will typically add additional fields */
4347};
4348
4349/*
Vasu Noria4356a02010-01-20 15:10:57 -08004350** CAPI3REF: Declare The Schema Of A Virtual Table
4351** EXPERIMENTAL
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004352**
Vasu Noria4356a02010-01-20 15:10:57 -08004353** ^The [xCreate] and [xConnect] methods of a
4354** [virtual table module] call this interface
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004355** to declare the format (the names and datatypes of the columns) of
4356** the virtual tables they implement.
4357*/
Vasu Noria4356a02010-01-20 15:10:57 -08004358SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_declare_vtab(sqlite3*, const char *zSQL);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004359
4360/*
Vasu Noria4356a02010-01-20 15:10:57 -08004361** CAPI3REF: Overload A Function For A Virtual Table
4362** EXPERIMENTAL
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004363**
Vasu Noria4356a02010-01-20 15:10:57 -08004364** ^(Virtual tables can provide alternative implementations of functions
4365** using the [xFindFunction] method of the [virtual table module].
4366** But global versions of those functions
4367** must exist in order to be overloaded.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004368**
Vasu Noria4356a02010-01-20 15:10:57 -08004369** ^(This API makes sure a global version of a function with a particular
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004370** name and number of parameters exists. If no such function exists
Vasu Noria4356a02010-01-20 15:10:57 -08004371** before this API is called, a new function is created.)^ ^The implementation
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004372** of the new function always causes an exception to be thrown. So
4373** the new function is not good for anything by itself. Its only
Vasu Noria4356a02010-01-20 15:10:57 -08004374** purpose is to be a placeholder function that can be overloaded
4375** by a [virtual table].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004376*/
Vasu Noria4356a02010-01-20 15:10:57 -08004377SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_overload_function(sqlite3*, const char *zFuncName, int nArg);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004378
4379/*
4380** The interface to the virtual-table mechanism defined above (back up
4381** to a comment remarkably similar to this one) is currently considered
4382** to be experimental. The interface might change in incompatible ways.
4383** If this is a problem for you, do not use the interface at this time.
4384**
4385** When the virtual-table mechanism stabilizes, we will declare the
4386** interface fixed, support it indefinitely, and remove this comment.
4387**
4388****** EXPERIMENTAL - subject to change without notice **************
4389*/
4390
4391/*
Vasu Noria4356a02010-01-20 15:10:57 -08004392** CAPI3REF: A Handle To An Open BLOB
4393** KEYWORDS: {BLOB handle} {BLOB handles}
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004394**
4395** An instance of this object represents an open BLOB on which
Vasu Noria4356a02010-01-20 15:10:57 -08004396** [sqlite3_blob_open | incremental BLOB I/O] can be performed.
4397** ^Objects of this type are created by [sqlite3_blob_open()]
4398** and destroyed by [sqlite3_blob_close()].
4399** ^The [sqlite3_blob_read()] and [sqlite3_blob_write()] interfaces
4400** can be used to read or write small subsections of the BLOB.
4401** ^The [sqlite3_blob_bytes()] interface returns the size of the BLOB in bytes.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004402*/
4403typedef struct sqlite3_blob sqlite3_blob;
4404
4405/*
Vasu Noria4356a02010-01-20 15:10:57 -08004406** CAPI3REF: Open A BLOB For Incremental I/O
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004407**
Vasu Noria4356a02010-01-20 15:10:57 -08004408** ^(This interfaces opens a [BLOB handle | handle] to the BLOB located
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004409** in row iRow, column zColumn, table zTable in database zDb;
Vasu Noria4356a02010-01-20 15:10:57 -08004410** in other words, the same BLOB that would be selected by:
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004411**
4412** <pre>
Vasu Noria4356a02010-01-20 15:10:57 -08004413** SELECT zColumn FROM zDb.zTable WHERE [rowid] = iRow;
4414** </pre>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004415**
Vasu Noria4356a02010-01-20 15:10:57 -08004416** ^If the flags parameter is non-zero, then the BLOB is opened for read
4417** and write access. ^If it is zero, the BLOB is opened for read access.
4418** ^It is not possible to open a column that is part of an index or primary
4419** key for writing. ^If [foreign key constraints] are enabled, it is
4420** not possible to open a column that is part of a [child key] for writing.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004421**
Vasu Noria4356a02010-01-20 15:10:57 -08004422** ^Note that the database name is not the filename that contains
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004423** the database but rather the symbolic name of the database that
Vasu Noria4356a02010-01-20 15:10:57 -08004424** appears after the AS keyword when the database is connected using [ATTACH].
4425** ^For the main database file, the database name is "main".
4426** ^For TEMP tables, the database name is "temp".
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004427**
Vasu Noria4356a02010-01-20 15:10:57 -08004428** ^(On success, [SQLITE_OK] is returned and the new [BLOB handle] is written
4429** to *ppBlob. Otherwise an [error code] is returned and *ppBlob is set
4430** to be a null pointer.)^
4431** ^This function sets the [database connection] error code and message
4432** accessible via [sqlite3_errcode()] and [sqlite3_errmsg()] and related
4433** functions. ^Note that the *ppBlob variable is always initialized in a
4434** way that makes it safe to invoke [sqlite3_blob_close()] on *ppBlob
4435** regardless of the success or failure of this routine.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004436**
Vasu Noria4356a02010-01-20 15:10:57 -08004437** ^(If the row that a BLOB handle points to is modified by an
4438** [UPDATE], [DELETE], or by [ON CONFLICT] side-effects
4439** then the BLOB handle is marked as "expired".
4440** This is true if any column of the row is changed, even a column
4441** other than the one the BLOB handle is open on.)^
4442** ^Calls to [sqlite3_blob_read()] and [sqlite3_blob_write()] for
4443** a expired BLOB handle fail with an return code of [SQLITE_ABORT].
4444** ^(Changes written into a BLOB prior to the BLOB expiring are not
4445** rolled back by the expiration of the BLOB. Such changes will eventually
4446** commit if the transaction continues to completion.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004447**
Vasu Noria4356a02010-01-20 15:10:57 -08004448** ^Use the [sqlite3_blob_bytes()] interface to determine the size of
4449** the opened blob. ^The size of a blob may not be changed by this
4450** interface. Use the [UPDATE] SQL command to change the size of a
4451** blob.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004452**
Vasu Noria4356a02010-01-20 15:10:57 -08004453** ^The [sqlite3_bind_zeroblob()] and [sqlite3_result_zeroblob()] interfaces
4454** and the built-in [zeroblob] SQL function can be used, if desired,
4455** to create an empty, zero-filled blob in which to read or write using
4456** this interface.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004457**
Vasu Noria4356a02010-01-20 15:10:57 -08004458** To avoid a resource leak, every open [BLOB handle] should eventually
4459** be released by a call to [sqlite3_blob_close()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004460*/
Vasu Noria4356a02010-01-20 15:10:57 -08004461SQLITE_API int sqlite3_blob_open(
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004462 sqlite3*,
4463 const char *zDb,
4464 const char *zTable,
4465 const char *zColumn,
4466 sqlite3_int64 iRow,
4467 int flags,
4468 sqlite3_blob **ppBlob
4469);
4470
4471/*
Vasu Noria4356a02010-01-20 15:10:57 -08004472** CAPI3REF: Close A BLOB Handle
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004473**
Vasu Noria4356a02010-01-20 15:10:57 -08004474** ^Closes an open [BLOB handle].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004475**
Vasu Noria4356a02010-01-20 15:10:57 -08004476** ^Closing a BLOB shall cause the current transaction to commit
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004477** if there are no other BLOBs, no pending prepared statements, and the
Vasu Noria4356a02010-01-20 15:10:57 -08004478** database connection is in [autocommit mode].
4479** ^If any writes were made to the BLOB, they might be held in cache
4480** until the close operation if they will fit.
4481**
4482** ^(Closing the BLOB often forces the changes
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004483** out to disk and so if any I/O errors occur, they will likely occur
Vasu Noria4356a02010-01-20 15:10:57 -08004484** at the time when the BLOB is closed. Any errors that occur during
4485** closing are reported as a non-zero return value.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004486**
Vasu Noria4356a02010-01-20 15:10:57 -08004487** ^(The BLOB is closed unconditionally. Even if this routine returns
4488** an error code, the BLOB is still closed.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004489**
Vasu Noria4356a02010-01-20 15:10:57 -08004490** ^Calling this routine with a null pointer (such as would be returned
4491** by a failed call to [sqlite3_blob_open()]) is a harmless no-op.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004492*/
Vasu Noria4356a02010-01-20 15:10:57 -08004493SQLITE_API int sqlite3_blob_close(sqlite3_blob *);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004494
4495/*
Vasu Noria4356a02010-01-20 15:10:57 -08004496** CAPI3REF: Return The Size Of An Open BLOB
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004497**
Vasu Noria4356a02010-01-20 15:10:57 -08004498** ^Returns the size in bytes of the BLOB accessible via the
4499** successfully opened [BLOB handle] in its only argument. ^The
4500** incremental blob I/O routines can only read or overwriting existing
4501** blob content; they cannot change the size of a blob.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004502**
Vasu Noria4356a02010-01-20 15:10:57 -08004503** This routine only works on a [BLOB handle] which has been created
4504** by a prior successful call to [sqlite3_blob_open()] and which has not
4505** been closed by [sqlite3_blob_close()]. Passing any other pointer in
4506** to this routine results in undefined and probably undesirable behavior.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004507*/
Vasu Noria4356a02010-01-20 15:10:57 -08004508SQLITE_API int sqlite3_blob_bytes(sqlite3_blob *);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004509
4510/*
Vasu Noria4356a02010-01-20 15:10:57 -08004511** CAPI3REF: Read Data From A BLOB Incrementally
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004512**
Vasu Noria4356a02010-01-20 15:10:57 -08004513** ^(This function is used to read data from an open [BLOB handle] into a
4514** caller-supplied buffer. N bytes of data are copied into buffer Z
4515** from the open BLOB, starting at offset iOffset.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004516**
Vasu Noria4356a02010-01-20 15:10:57 -08004517** ^If offset iOffset is less than N bytes from the end of the BLOB,
4518** [SQLITE_ERROR] is returned and no data is read. ^If N or iOffset is
4519** less than zero, [SQLITE_ERROR] is returned and no data is read.
4520** ^The size of the blob (and hence the maximum value of N+iOffset)
4521** can be determined using the [sqlite3_blob_bytes()] interface.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004522**
Vasu Noria4356a02010-01-20 15:10:57 -08004523** ^An attempt to read from an expired [BLOB handle] fails with an
4524** error code of [SQLITE_ABORT].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004525**
Vasu Noria4356a02010-01-20 15:10:57 -08004526** ^(On success, sqlite3_blob_read() returns SQLITE_OK.
4527** Otherwise, an [error code] or an [extended error code] is returned.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004528**
Vasu Noria4356a02010-01-20 15:10:57 -08004529** This routine only works on a [BLOB handle] which has been created
4530** by a prior successful call to [sqlite3_blob_open()] and which has not
4531** been closed by [sqlite3_blob_close()]. Passing any other pointer in
4532** to this routine results in undefined and probably undesirable behavior.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004533**
Vasu Noria4356a02010-01-20 15:10:57 -08004534** See also: [sqlite3_blob_write()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004535*/
Vasu Noria4356a02010-01-20 15:10:57 -08004536SQLITE_API int sqlite3_blob_read(sqlite3_blob *, void *Z, int N, int iOffset);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004537
4538/*
Vasu Noria4356a02010-01-20 15:10:57 -08004539** CAPI3REF: Write Data Into A BLOB Incrementally
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004540**
Vasu Noria4356a02010-01-20 15:10:57 -08004541** ^This function is used to write data into an open [BLOB handle] from a
4542** caller-supplied buffer. ^N bytes of data are copied from the buffer Z
4543** into the open BLOB, starting at offset iOffset.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004544**
Vasu Noria4356a02010-01-20 15:10:57 -08004545** ^If the [BLOB handle] passed as the first argument was not opened for
4546** writing (the flags parameter to [sqlite3_blob_open()] was zero),
4547** this function returns [SQLITE_READONLY].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004548**
Vasu Noria4356a02010-01-20 15:10:57 -08004549** ^This function may only modify the contents of the BLOB; it is
4550** not possible to increase the size of a BLOB using this API.
4551** ^If offset iOffset is less than N bytes from the end of the BLOB,
4552** [SQLITE_ERROR] is returned and no data is written. ^If N is
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004553** less than zero [SQLITE_ERROR] is returned and no data is written.
Vasu Noria4356a02010-01-20 15:10:57 -08004554** The size of the BLOB (and hence the maximum value of N+iOffset)
4555** can be determined using the [sqlite3_blob_bytes()] interface.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004556**
Vasu Noria4356a02010-01-20 15:10:57 -08004557** ^An attempt to write to an expired [BLOB handle] fails with an
4558** error code of [SQLITE_ABORT]. ^Writes to the BLOB that occurred
4559** before the [BLOB handle] expired are not rolled back by the
4560** expiration of the handle, though of course those changes might
4561** have been overwritten by the statement that expired the BLOB handle
4562** or by other independent statements.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004563**
Vasu Noria4356a02010-01-20 15:10:57 -08004564** ^(On success, sqlite3_blob_write() returns SQLITE_OK.
4565** Otherwise, an [error code] or an [extended error code] is returned.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004566**
Vasu Noria4356a02010-01-20 15:10:57 -08004567** This routine only works on a [BLOB handle] which has been created
4568** by a prior successful call to [sqlite3_blob_open()] and which has not
4569** been closed by [sqlite3_blob_close()]. Passing any other pointer in
4570** to this routine results in undefined and probably undesirable behavior.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004571**
Vasu Noria4356a02010-01-20 15:10:57 -08004572** See also: [sqlite3_blob_read()].
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004573*/
Vasu Noria4356a02010-01-20 15:10:57 -08004574SQLITE_API int sqlite3_blob_write(sqlite3_blob *, const void *z, int n, int iOffset);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004575
4576/*
Vasu Noria4356a02010-01-20 15:10:57 -08004577** CAPI3REF: Virtual File System Objects
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004578**
4579** A virtual filesystem (VFS) is an [sqlite3_vfs] object
4580** that SQLite uses to interact
4581** with the underlying operating system. Most SQLite builds come with a
4582** single default VFS that is appropriate for the host computer.
4583** New VFSes can be registered and existing VFSes can be unregistered.
4584** The following interfaces are provided.
4585**
Vasu Noria4356a02010-01-20 15:10:57 -08004586** ^The sqlite3_vfs_find() interface returns a pointer to a VFS given its name.
4587** ^Names are case sensitive.
4588** ^Names are zero-terminated UTF-8 strings.
4589** ^If there is no match, a NULL pointer is returned.
4590** ^If zVfsName is NULL then the default VFS is returned.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004591**
Vasu Noria4356a02010-01-20 15:10:57 -08004592** ^New VFSes are registered with sqlite3_vfs_register().
4593** ^Each new VFS becomes the default VFS if the makeDflt flag is set.
4594** ^The same VFS can be registered multiple times without injury.
4595** ^To make an existing VFS into the default VFS, register it again
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004596** with the makeDflt flag set. If two different VFSes with the
4597** same name are registered, the behavior is undefined. If a
4598** VFS is registered with a name that is NULL or an empty string,
4599** then the behavior is undefined.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004600**
Vasu Noria4356a02010-01-20 15:10:57 -08004601** ^Unregister a VFS with the sqlite3_vfs_unregister() interface.
4602** ^(If the default VFS is unregistered, another VFS is chosen as
4603** the default. The choice for the new VFS is arbitrary.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004604*/
Vasu Noria4356a02010-01-20 15:10:57 -08004605SQLITE_API sqlite3_vfs *sqlite3_vfs_find(const char *zVfsName);
4606SQLITE_API int sqlite3_vfs_register(sqlite3_vfs*, int makeDflt);
4607SQLITE_API int sqlite3_vfs_unregister(sqlite3_vfs*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004608
4609/*
Vasu Noria4356a02010-01-20 15:10:57 -08004610** CAPI3REF: Mutexes
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004611**
4612** The SQLite core uses these routines for thread
Vasu Noria4356a02010-01-20 15:10:57 -08004613** synchronization. Though they are intended for internal
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004614** use by SQLite, code that links against SQLite is
4615** permitted to use any of these routines.
4616**
Vasu Noria4356a02010-01-20 15:10:57 -08004617** The SQLite source code contains multiple implementations
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004618** of these mutex routines. An appropriate implementation
Vasu Noria4356a02010-01-20 15:10:57 -08004619** is selected automatically at compile-time. ^(The following
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004620** implementations are available in the SQLite core:
4621**
4622** <ul>
4623** <li> SQLITE_MUTEX_OS2
4624** <li> SQLITE_MUTEX_PTHREAD
4625** <li> SQLITE_MUTEX_W32
4626** <li> SQLITE_MUTEX_NOOP
Vasu Noria4356a02010-01-20 15:10:57 -08004627** </ul>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004628**
Vasu Noria4356a02010-01-20 15:10:57 -08004629** ^The SQLITE_MUTEX_NOOP implementation is a set of routines
4630** that does no real locking and is appropriate for use in
4631** a single-threaded application. ^The SQLITE_MUTEX_OS2,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004632** SQLITE_MUTEX_PTHREAD, and SQLITE_MUTEX_W32 implementations
Vasu Noria4356a02010-01-20 15:10:57 -08004633** are appropriate for use on OS/2, Unix, and Windows.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004634**
Vasu Noria4356a02010-01-20 15:10:57 -08004635** ^(If SQLite is compiled with the SQLITE_MUTEX_APPDEF preprocessor
4636** macro defined (with "-DSQLITE_MUTEX_APPDEF=1"), then no mutex
4637** implementation is included with the library. In this case the
4638** application must supply a custom mutex implementation using the
4639** [SQLITE_CONFIG_MUTEX] option of the sqlite3_config() function
4640** before calling sqlite3_initialize() or any other public sqlite3_
4641** function that calls sqlite3_initialize().)^
4642**
4643** ^The sqlite3_mutex_alloc() routine allocates a new
4644** mutex and returns a pointer to it. ^If it returns NULL
4645** that means that a mutex could not be allocated. ^SQLite
4646** will unwind its stack and return an error. ^(The argument
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004647** to sqlite3_mutex_alloc() is one of these integer constants:
4648**
4649** <ul>
4650** <li> SQLITE_MUTEX_FAST
4651** <li> SQLITE_MUTEX_RECURSIVE
4652** <li> SQLITE_MUTEX_STATIC_MASTER
4653** <li> SQLITE_MUTEX_STATIC_MEM
4654** <li> SQLITE_MUTEX_STATIC_MEM2
4655** <li> SQLITE_MUTEX_STATIC_PRNG
4656** <li> SQLITE_MUTEX_STATIC_LRU
4657** <li> SQLITE_MUTEX_STATIC_LRU2
Vasu Noria4356a02010-01-20 15:10:57 -08004658** </ul>)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004659**
Vasu Noria4356a02010-01-20 15:10:57 -08004660** ^The first two constants (SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE)
4661** cause sqlite3_mutex_alloc() to create
4662** a new mutex. ^The new mutex is recursive when SQLITE_MUTEX_RECURSIVE
4663** is used but not necessarily so when SQLITE_MUTEX_FAST is used.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004664** The mutex implementation does not need to make a distinction
4665** between SQLITE_MUTEX_RECURSIVE and SQLITE_MUTEX_FAST if it does
Vasu Noria4356a02010-01-20 15:10:57 -08004666** not want to. ^SQLite will only request a recursive mutex in
4667** cases where it really needs one. ^If a faster non-recursive mutex
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004668** implementation is available on the host platform, the mutex subsystem
4669** might return such a mutex in response to SQLITE_MUTEX_FAST.
4670**
Vasu Noria4356a02010-01-20 15:10:57 -08004671** ^The other allowed parameters to sqlite3_mutex_alloc() (anything other
4672** than SQLITE_MUTEX_FAST and SQLITE_MUTEX_RECURSIVE) each return
4673** a pointer to a static preexisting mutex. ^Six static mutexes are
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004674** used by the current version of SQLite. Future versions of SQLite
4675** may add additional static mutexes. Static mutexes are for internal
4676** use by SQLite only. Applications that use SQLite mutexes should
4677** use only the dynamic mutexes returned by SQLITE_MUTEX_FAST or
4678** SQLITE_MUTEX_RECURSIVE.
4679**
Vasu Noria4356a02010-01-20 15:10:57 -08004680** ^Note that if one of the dynamic mutex parameters (SQLITE_MUTEX_FAST
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004681** or SQLITE_MUTEX_RECURSIVE) is used then sqlite3_mutex_alloc()
Vasu Noria4356a02010-01-20 15:10:57 -08004682** returns a different mutex on every call. ^But for the static
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004683** mutex types, the same mutex is returned on every call that has
Vasu Noria4356a02010-01-20 15:10:57 -08004684** the same type number.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004685**
Vasu Noria4356a02010-01-20 15:10:57 -08004686** ^The sqlite3_mutex_free() routine deallocates a previously
4687** allocated dynamic mutex. ^SQLite is careful to deallocate every
4688** dynamic mutex that it allocates. The dynamic mutexes must not be in
4689** use when they are deallocated. Attempting to deallocate a static
4690** mutex results in undefined behavior. ^SQLite never deallocates
4691** a static mutex.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004692**
Vasu Noria4356a02010-01-20 15:10:57 -08004693** ^The sqlite3_mutex_enter() and sqlite3_mutex_try() routines attempt
4694** to enter a mutex. ^If another thread is already within the mutex,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004695** sqlite3_mutex_enter() will block and sqlite3_mutex_try() will return
Vasu Noria4356a02010-01-20 15:10:57 -08004696** SQLITE_BUSY. ^The sqlite3_mutex_try() interface returns [SQLITE_OK]
4697** upon successful entry. ^(Mutexes created using
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004698** SQLITE_MUTEX_RECURSIVE can be entered multiple times by the same thread.
Vasu Noria4356a02010-01-20 15:10:57 -08004699** In such cases the,
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004700** mutex must be exited an equal number of times before another thread
Vasu Noria4356a02010-01-20 15:10:57 -08004701** can enter.)^ ^(If the same thread tries to enter any other
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004702** kind of mutex more than once, the behavior is undefined.
Vasu Noria4356a02010-01-20 15:10:57 -08004703** SQLite will never exhibit
4704** such behavior in its own use of mutexes.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004705**
Vasu Noria4356a02010-01-20 15:10:57 -08004706** ^(Some systems (for example, Windows 95) do not support the operation
4707** implemented by sqlite3_mutex_try(). On those systems, sqlite3_mutex_try()
4708** will always return SQLITE_BUSY. The SQLite core only ever uses
4709** sqlite3_mutex_try() as an optimization so this is acceptable behavior.)^
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004710**
Vasu Noria4356a02010-01-20 15:10:57 -08004711** ^The sqlite3_mutex_leave() routine exits a mutex that was
4712** previously entered by the same thread. ^(The behavior
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004713** is undefined if the mutex is not currently entered by the
Vasu Noria4356a02010-01-20 15:10:57 -08004714** calling thread or is not currently allocated. SQLite will
4715** never do either.)^
4716**
4717** ^If the argument to sqlite3_mutex_enter(), sqlite3_mutex_try(), or
4718** sqlite3_mutex_leave() is a NULL pointer, then all three routines
4719** behave as no-ops.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004720**
4721** See also: [sqlite3_mutex_held()] and [sqlite3_mutex_notheld()].
4722*/
Vasu Noria4356a02010-01-20 15:10:57 -08004723SQLITE_API sqlite3_mutex *sqlite3_mutex_alloc(int);
4724SQLITE_API void sqlite3_mutex_free(sqlite3_mutex*);
4725SQLITE_API void sqlite3_mutex_enter(sqlite3_mutex*);
4726SQLITE_API int sqlite3_mutex_try(sqlite3_mutex*);
4727SQLITE_API void sqlite3_mutex_leave(sqlite3_mutex*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004728
4729/*
Vasu Noria4356a02010-01-20 15:10:57 -08004730** CAPI3REF: Mutex Methods Object
4731** EXPERIMENTAL
4732**
4733** An instance of this structure defines the low-level routines
4734** used to allocate and use mutexes.
4735**
4736** Usually, the default mutex implementations provided by SQLite are
4737** sufficient, however the user has the option of substituting a custom
4738** implementation for specialized deployments or systems for which SQLite
4739** does not provide a suitable implementation. In this case, the user
4740** creates and populates an instance of this structure to pass
4741** to sqlite3_config() along with the [SQLITE_CONFIG_MUTEX] option.
4742** Additionally, an instance of this structure can be used as an
4743** output variable when querying the system for the current mutex
4744** implementation, using the [SQLITE_CONFIG_GETMUTEX] option.
4745**
4746** ^The xMutexInit method defined by this structure is invoked as
4747** part of system initialization by the sqlite3_initialize() function.
4748** ^The xMutexInit routine is calle by SQLite exactly once for each
4749** effective call to [sqlite3_initialize()].
4750**
4751** ^The xMutexEnd method defined by this structure is invoked as
4752** part of system shutdown by the sqlite3_shutdown() function. The
4753** implementation of this method is expected to release all outstanding
4754** resources obtained by the mutex methods implementation, especially
4755** those obtained by the xMutexInit method. ^The xMutexEnd()
4756** interface is invoked exactly once for each call to [sqlite3_shutdown()].
4757**
4758** ^(The remaining seven methods defined by this structure (xMutexAlloc,
4759** xMutexFree, xMutexEnter, xMutexTry, xMutexLeave, xMutexHeld and
4760** xMutexNotheld) implement the following interfaces (respectively):
4761**
4762** <ul>
4763** <li> [sqlite3_mutex_alloc()] </li>
4764** <li> [sqlite3_mutex_free()] </li>
4765** <li> [sqlite3_mutex_enter()] </li>
4766** <li> [sqlite3_mutex_try()] </li>
4767** <li> [sqlite3_mutex_leave()] </li>
4768** <li> [sqlite3_mutex_held()] </li>
4769** <li> [sqlite3_mutex_notheld()] </li>
4770** </ul>)^
4771**
4772** The only difference is that the public sqlite3_XXX functions enumerated
4773** above silently ignore any invocations that pass a NULL pointer instead
4774** of a valid mutex handle. The implementations of the methods defined
4775** by this structure are not required to handle this case, the results
4776** of passing a NULL pointer instead of a valid mutex handle are undefined
4777** (i.e. it is acceptable to provide an implementation that segfaults if
4778** it is passed a NULL pointer).
4779**
4780** The xMutexInit() method must be threadsafe. ^It must be harmless to
4781** invoke xMutexInit() mutiple times within the same process and without
4782** intervening calls to xMutexEnd(). Second and subsequent calls to
4783** xMutexInit() must be no-ops.
4784**
4785** ^xMutexInit() must not use SQLite memory allocation ([sqlite3_malloc()]
4786** and its associates). ^Similarly, xMutexAlloc() must not use SQLite memory
4787** allocation for a static mutex. ^However xMutexAlloc() may use SQLite
4788** memory allocation for a fast or recursive mutex.
4789**
4790** ^SQLite will invoke the xMutexEnd() method when [sqlite3_shutdown()] is
4791** called, but only if the prior call to xMutexInit returned SQLITE_OK.
4792** If xMutexInit fails in any way, it is expected to clean up after itself
4793** prior to returning.
4794*/
4795typedef struct sqlite3_mutex_methods sqlite3_mutex_methods;
4796struct sqlite3_mutex_methods {
4797 int (*xMutexInit)(void);
4798 int (*xMutexEnd)(void);
4799 sqlite3_mutex *(*xMutexAlloc)(int);
4800 void (*xMutexFree)(sqlite3_mutex *);
4801 void (*xMutexEnter)(sqlite3_mutex *);
4802 int (*xMutexTry)(sqlite3_mutex *);
4803 void (*xMutexLeave)(sqlite3_mutex *);
4804 int (*xMutexHeld)(sqlite3_mutex *);
4805 int (*xMutexNotheld)(sqlite3_mutex *);
4806};
4807
4808/*
4809** CAPI3REF: Mutex Verification Routines
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004810**
4811** The sqlite3_mutex_held() and sqlite3_mutex_notheld() routines
Vasu Noria4356a02010-01-20 15:10:57 -08004812** are intended for use inside assert() statements. ^The SQLite core
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004813** never uses these routines except inside an assert() and applications
Vasu Noria4356a02010-01-20 15:10:57 -08004814** are advised to follow the lead of the core. ^The SQLite core only
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004815** provides implementations for these routines when it is compiled
Vasu Noria4356a02010-01-20 15:10:57 -08004816** with the SQLITE_DEBUG flag. ^External mutex implementations
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004817** are only required to provide these routines if SQLITE_DEBUG is
4818** defined and if NDEBUG is not defined.
4819**
Vasu Noria4356a02010-01-20 15:10:57 -08004820** ^These routines should return true if the mutex in their argument
4821** is held or not held, respectively, by the calling thread.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004822**
Vasu Noria4356a02010-01-20 15:10:57 -08004823** ^The implementation is not required to provided versions of these
4824** routines that actually work. If the implementation does not provide working
4825** versions of these routines, it should at least provide stubs that always
4826** return true so that one does not get spurious assertion failures.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004827**
Vasu Noria4356a02010-01-20 15:10:57 -08004828** ^If the argument to sqlite3_mutex_held() is a NULL pointer then
4829** the routine should return 1. This seems counter-intuitive since
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004830** clearly the mutex cannot be held if it does not exist. But the
4831** the reason the mutex does not exist is because the build is not
4832** using mutexes. And we do not want the assert() containing the
4833** call to sqlite3_mutex_held() to fail, so a non-zero return is
Vasu Noria4356a02010-01-20 15:10:57 -08004834** the appropriate thing to do. ^The sqlite3_mutex_notheld()
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004835** interface should also return 1 when given a NULL pointer.
4836*/
Vasu Noria4356a02010-01-20 15:10:57 -08004837#ifndef NDEBUG
4838SQLITE_API int sqlite3_mutex_held(sqlite3_mutex*);
4839SQLITE_API int sqlite3_mutex_notheld(sqlite3_mutex*);
4840#endif
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004841
4842/*
Vasu Noria4356a02010-01-20 15:10:57 -08004843** CAPI3REF: Mutex Types
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004844**
Vasu Noria4356a02010-01-20 15:10:57 -08004845** The [sqlite3_mutex_alloc()] interface takes a single argument
4846** which is one of these integer constants.
4847**
4848** The set of static mutexes may change from one SQLite release to the
4849** next. Applications that override the built-in mutex logic must be
4850** prepared to accommodate additional static mutexes.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004851*/
4852#define SQLITE_MUTEX_FAST 0
4853#define SQLITE_MUTEX_RECURSIVE 1
4854#define SQLITE_MUTEX_STATIC_MASTER 2
4855#define SQLITE_MUTEX_STATIC_MEM 3 /* sqlite3_malloc() */
Vasu Noria4356a02010-01-20 15:10:57 -08004856#define SQLITE_MUTEX_STATIC_MEM2 4 /* NOT USED */
4857#define SQLITE_MUTEX_STATIC_OPEN 4 /* sqlite3BtreeOpen() */
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004858#define SQLITE_MUTEX_STATIC_PRNG 5 /* sqlite3_random() */
4859#define SQLITE_MUTEX_STATIC_LRU 6 /* lru page list */
4860#define SQLITE_MUTEX_STATIC_LRU2 7 /* lru page list */
4861
4862/*
Vasu Noria4356a02010-01-20 15:10:57 -08004863** CAPI3REF: Retrieve the mutex for a database connection
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004864**
Vasu Noria4356a02010-01-20 15:10:57 -08004865** ^This interface returns a pointer the [sqlite3_mutex] object that
4866** serializes access to the [database connection] given in the argument
4867** when the [threading mode] is Serialized.
4868** ^If the [threading mode] is Single-thread or Multi-thread then this
4869** routine returns a NULL pointer.
4870*/
4871SQLITE_API sqlite3_mutex *sqlite3_db_mutex(sqlite3*);
4872
4873/*
4874** CAPI3REF: Low-Level Control Of Database Files
4875**
4876** ^The [sqlite3_file_control()] interface makes a direct call to the
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004877** xFileControl method for the [sqlite3_io_methods] object associated
Vasu Noria4356a02010-01-20 15:10:57 -08004878** with a particular database identified by the second argument. ^The
4879** name of the database "main" for the main database or "temp" for the
4880** TEMP database, or the name that appears after the AS keyword for
4881** databases that are added using the [ATTACH] SQL command.
4882** ^A NULL pointer can be used in place of "main" to refer to the
4883** main database file.
4884** ^The third and fourth parameters to this routine
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004885** are passed directly through to the second and third parameters of
Vasu Noria4356a02010-01-20 15:10:57 -08004886** the xFileControl method. ^The return value of the xFileControl
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004887** method becomes the return value of this routine.
4888**
Vasu Noria4356a02010-01-20 15:10:57 -08004889** ^If the second parameter (zDbName) does not match the name of any
4890** open database file, then SQLITE_ERROR is returned. ^This error
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004891** code is not remembered and will not be recalled by [sqlite3_errcode()]
Vasu Noria4356a02010-01-20 15:10:57 -08004892** or [sqlite3_errmsg()]. The underlying xFileControl method might
4893** also return SQLITE_ERROR. There is no way to distinguish between
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004894** an incorrect zDbName and an SQLITE_ERROR return from the underlying
Vasu Noria4356a02010-01-20 15:10:57 -08004895** xFileControl method.
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004896**
4897** See also: [SQLITE_FCNTL_LOCKSTATE]
4898*/
Vasu Noria4356a02010-01-20 15:10:57 -08004899SQLITE_API int sqlite3_file_control(sqlite3*, const char *zDbName, int op, void*);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004900
4901/*
Vasu Noria4356a02010-01-20 15:10:57 -08004902** CAPI3REF: Testing Interface
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004903**
Vasu Noria4356a02010-01-20 15:10:57 -08004904** ^The sqlite3_test_control() interface is used to read out internal
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004905** state of SQLite and to inject faults into SQLite for testing
Vasu Noria4356a02010-01-20 15:10:57 -08004906** purposes. ^The first parameter is an operation code that determines
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004907** the number, meaning, and operation of all subsequent parameters.
4908**
4909** This interface is not for use by applications. It exists solely
4910** for verifying the correct operation of the SQLite library. Depending
4911** on how the SQLite library is compiled, this interface might not exist.
4912**
4913** The details of the operation codes, their meanings, the parameters
4914** they take, and what they do are all subject to change without notice.
4915** Unlike most of the SQLite API, this function is not guaranteed to
4916** operate consistently from one release to the next.
4917*/
Vasu Noria4356a02010-01-20 15:10:57 -08004918SQLITE_API int sqlite3_test_control(int op, ...);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004919
4920/*
Vasu Noria4356a02010-01-20 15:10:57 -08004921** CAPI3REF: Testing Interface Operation Codes
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004922**
4923** These constants are the valid operation code parameters used
4924** as the first argument to [sqlite3_test_control()].
4925**
Vasu Noria4356a02010-01-20 15:10:57 -08004926** These parameters and their meanings are subject to change
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004927** without notice. These values are for testing purposes only.
4928** Applications should not use any of these parameters or the
4929** [sqlite3_test_control()] interface.
4930*/
Vasu Noria4356a02010-01-20 15:10:57 -08004931#define SQLITE_TESTCTRL_FIRST 5
The Android Open Source Project7790ef52009-03-03 19:30:40 -08004932#define SQLITE_TESTCTRL_PRNG_SAVE 5
4933#define SQLITE_TESTCTRL_PRNG_RESTORE 6
4934#define SQLITE_TESTCTRL_PRNG_RESET 7
4935#define SQLITE_TESTCTRL_BITVEC_TEST 8
Vasu Noria4356a02010-01-20 15:10:57 -08004936#define SQLITE_TESTCTRL_FAULT_INSTALL 9
4937#define SQLITE_TESTCTRL_BENIGN_MALLOC_HOOKS 10
4938#define SQLITE_TESTCTRL_PENDING_BYTE 11
4939#define SQLITE_TESTCTRL_ASSERT 12
4940#define SQLITE_TESTCTRL_ALWAYS 13
4941#define SQLITE_TESTCTRL_RESERVE 14
4942#define SQLITE_TESTCTRL_OPTIMIZATIONS 15
4943#define SQLITE_TESTCTRL_ISKEYWORD 16
4944#define SQLITE_TESTCTRL_LAST 16
4945
4946/*
4947** CAPI3REF: SQLite Runtime Status
4948** EXPERIMENTAL
4949**
4950** ^This interface is used to retrieve runtime status information
4951** about the preformance of SQLite, and optionally to reset various
4952** highwater marks. ^The first argument is an integer code for
4953** the specific parameter to measure. ^(Recognized integer codes
4954** are of the form [SQLITE_STATUS_MEMORY_USED | SQLITE_STATUS_...].)^
4955** ^The current value of the parameter is returned into *pCurrent.
4956** ^The highest recorded value is returned in *pHighwater. ^If the
4957** resetFlag is true, then the highest record value is reset after
4958** *pHighwater is written. ^(Some parameters do not record the highest
4959** value. For those parameters
4960** nothing is written into *pHighwater and the resetFlag is ignored.)^
4961** ^(Other parameters record only the highwater mark and not the current
4962** value. For these latter parameters nothing is written into *pCurrent.)^
4963**
4964** ^The sqlite3_db_status() routine returns SQLITE_OK on success and a
4965** non-zero [error code] on failure.
4966**
4967** This routine is threadsafe but is not atomic. This routine can be
4968** called while other threads are running the same or different SQLite
4969** interfaces. However the values returned in *pCurrent and
4970** *pHighwater reflect the status of SQLite at different points in time
4971** and it is possible that another thread might change the parameter
4972** in between the times when *pCurrent and *pHighwater are written.
4973**
4974** See also: [sqlite3_db_status()]
4975*/
4976SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_status(int op, int *pCurrent, int *pHighwater, int resetFlag);
4977
4978
4979/*
4980** CAPI3REF: Status Parameters
4981** EXPERIMENTAL
4982**
4983** These integer constants designate various run-time status parameters
4984** that can be returned by [sqlite3_status()].
4985**
4986** <dl>
4987** ^(<dt>SQLITE_STATUS_MEMORY_USED</dt>
4988** <dd>This parameter is the current amount of memory checked out
4989** using [sqlite3_malloc()], either directly or indirectly. The
4990** figure includes calls made to [sqlite3_malloc()] by the application
4991** and internal memory usage by the SQLite library. Scratch memory
4992** controlled by [SQLITE_CONFIG_SCRATCH] and auxiliary page-cache
4993** memory controlled by [SQLITE_CONFIG_PAGECACHE] is not included in
4994** this parameter. The amount returned is the sum of the allocation
4995** sizes as reported by the xSize method in [sqlite3_mem_methods].</dd>)^
4996**
4997** ^(<dt>SQLITE_STATUS_MALLOC_SIZE</dt>
4998** <dd>This parameter records the largest memory allocation request
4999** handed to [sqlite3_malloc()] or [sqlite3_realloc()] (or their
5000** internal equivalents). Only the value returned in the
5001** *pHighwater parameter to [sqlite3_status()] is of interest.
5002** The value written into the *pCurrent parameter is undefined.</dd>)^
5003**
5004** ^(<dt>SQLITE_STATUS_PAGECACHE_USED</dt>
5005** <dd>This parameter returns the number of pages used out of the
5006** [pagecache memory allocator] that was configured using
5007** [SQLITE_CONFIG_PAGECACHE]. The
5008** value returned is in pages, not in bytes.</dd>)^
5009**
5010** ^(<dt>SQLITE_STATUS_PAGECACHE_OVERFLOW</dt>
5011** <dd>This parameter returns the number of bytes of page cache
5012** allocation which could not be statisfied by the [SQLITE_CONFIG_PAGECACHE]
5013** buffer and where forced to overflow to [sqlite3_malloc()]. The
5014** returned value includes allocations that overflowed because they
5015** where too large (they were larger than the "sz" parameter to
5016** [SQLITE_CONFIG_PAGECACHE]) and allocations that overflowed because
5017** no space was left in the page cache.</dd>)^
5018**
5019** ^(<dt>SQLITE_STATUS_PAGECACHE_SIZE</dt>
5020** <dd>This parameter records the largest memory allocation request
5021** handed to [pagecache memory allocator]. Only the value returned in the
5022** *pHighwater parameter to [sqlite3_status()] is of interest.
5023** The value written into the *pCurrent parameter is undefined.</dd>)^
5024**
5025** ^(<dt>SQLITE_STATUS_SCRATCH_USED</dt>
5026** <dd>This parameter returns the number of allocations used out of the
5027** [scratch memory allocator] configured using
5028** [SQLITE_CONFIG_SCRATCH]. The value returned is in allocations, not
5029** in bytes. Since a single thread may only have one scratch allocation
5030** outstanding at time, this parameter also reports the number of threads
5031** using scratch memory at the same time.</dd>)^
5032**
5033** ^(<dt>SQLITE_STATUS_SCRATCH_OVERFLOW</dt>
5034** <dd>This parameter returns the number of bytes of scratch memory
5035** allocation which could not be statisfied by the [SQLITE_CONFIG_SCRATCH]
5036** buffer and where forced to overflow to [sqlite3_malloc()]. The values
5037** returned include overflows because the requested allocation was too
5038** larger (that is, because the requested allocation was larger than the
5039** "sz" parameter to [SQLITE_CONFIG_SCRATCH]) and because no scratch buffer
5040** slots were available.
5041** </dd>)^
5042**
5043** ^(<dt>SQLITE_STATUS_SCRATCH_SIZE</dt>
5044** <dd>This parameter records the largest memory allocation request
5045** handed to [scratch memory allocator]. Only the value returned in the
5046** *pHighwater parameter to [sqlite3_status()] is of interest.
5047** The value written into the *pCurrent parameter is undefined.</dd>)^
5048**
5049** ^(<dt>SQLITE_STATUS_PARSER_STACK</dt>
5050** <dd>This parameter records the deepest parser stack. It is only
5051** meaningful if SQLite is compiled with [YYTRACKMAXSTACKDEPTH].</dd>)^
5052** </dl>
5053**
5054** New status parameters may be added from time to time.
5055*/
5056#define SQLITE_STATUS_MEMORY_USED 0
5057#define SQLITE_STATUS_PAGECACHE_USED 1
5058#define SQLITE_STATUS_PAGECACHE_OVERFLOW 2
5059#define SQLITE_STATUS_SCRATCH_USED 3
5060#define SQLITE_STATUS_SCRATCH_OVERFLOW 4
5061#define SQLITE_STATUS_MALLOC_SIZE 5
5062#define SQLITE_STATUS_PARSER_STACK 6
5063#define SQLITE_STATUS_PAGECACHE_SIZE 7
5064#define SQLITE_STATUS_SCRATCH_SIZE 8
5065
5066/*
5067** CAPI3REF: Database Connection Status
5068** EXPERIMENTAL
5069**
5070** ^This interface is used to retrieve runtime status information
5071** about a single [database connection]. ^The first argument is the
5072** database connection object to be interrogated. ^The second argument
5073** is the parameter to interrogate. ^Currently, the only allowed value
5074** for the second parameter is [SQLITE_DBSTATUS_LOOKASIDE_USED].
5075** Additional options will likely appear in future releases of SQLite.
5076**
5077** ^The current value of the requested parameter is written into *pCur
5078** and the highest instantaneous value is written into *pHiwtr. ^If
5079** the resetFlg is true, then the highest instantaneous value is
5080** reset back down to the current value.
5081**
5082** See also: [sqlite3_status()] and [sqlite3_stmt_status()].
5083*/
5084SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_db_status(sqlite3*, int op, int *pCur, int *pHiwtr, int resetFlg);
5085
5086/*
5087** CAPI3REF: Status Parameters for database connections
5088** EXPERIMENTAL
5089**
5090** These constants are the available integer "verbs" that can be passed as
5091** the second argument to the [sqlite3_db_status()] interface.
5092**
5093** New verbs may be added in future releases of SQLite. Existing verbs
5094** might be discontinued. Applications should check the return code from
5095** [sqlite3_db_status()] to make sure that the call worked.
5096** The [sqlite3_db_status()] interface will return a non-zero error code
5097** if a discontinued or unsupported verb is invoked.
5098**
5099** <dl>
5100** ^(<dt>SQLITE_DBSTATUS_LOOKASIDE_USED</dt>
5101** <dd>This parameter returns the number of lookaside memory slots currently
5102** checked out.</dd>)^
5103** </dl>
5104*/
5105#define SQLITE_DBSTATUS_LOOKASIDE_USED 0
5106
5107
5108/*
5109** CAPI3REF: Prepared Statement Status
5110** EXPERIMENTAL
5111**
5112** ^(Each prepared statement maintains various
5113** [SQLITE_STMTSTATUS_SORT | counters] that measure the number
5114** of times it has performed specific operations.)^ These counters can
5115** be used to monitor the performance characteristics of the prepared
5116** statements. For example, if the number of table steps greatly exceeds
5117** the number of table searches or result rows, that would tend to indicate
5118** that the prepared statement is using a full table scan rather than
5119** an index.
5120**
5121** ^(This interface is used to retrieve and reset counter values from
5122** a [prepared statement]. The first argument is the prepared statement
5123** object to be interrogated. The second argument
5124** is an integer code for a specific [SQLITE_STMTSTATUS_SORT | counter]
5125** to be interrogated.)^
5126** ^The current value of the requested counter is returned.
5127** ^If the resetFlg is true, then the counter is reset to zero after this
5128** interface call returns.
5129**
5130** See also: [sqlite3_status()] and [sqlite3_db_status()].
5131*/
5132SQLITE_API SQLITE_EXPERIMENTAL int sqlite3_stmt_status(sqlite3_stmt*, int op,int resetFlg);
5133
5134/*
5135** CAPI3REF: Status Parameters for prepared statements
5136** EXPERIMENTAL
5137**
5138** These preprocessor macros define integer codes that name counter
5139** values associated with the [sqlite3_stmt_status()] interface.
5140** The meanings of the various counters are as follows:
5141**
5142** <dl>
5143** <dt>SQLITE_STMTSTATUS_FULLSCAN_STEP</dt>
5144** <dd>^This is the number of times that SQLite has stepped forward in
5145** a table as part of a full table scan. Large numbers for this counter
5146** may indicate opportunities for performance improvement through
5147** careful use of indices.</dd>
5148**
5149** <dt>SQLITE_STMTSTATUS_SORT</dt>
5150** <dd>^This is the number of sort operations that have occurred.
5151** A non-zero value in this counter may indicate an opportunity to
5152** improvement performance through careful use of indices.</dd>
5153**
5154** </dl>
5155*/
5156#define SQLITE_STMTSTATUS_FULLSCAN_STEP 1
5157#define SQLITE_STMTSTATUS_SORT 2
5158
5159/*
5160** CAPI3REF: Custom Page Cache Object
5161** EXPERIMENTAL
5162**
5163** The sqlite3_pcache type is opaque. It is implemented by
5164** the pluggable module. The SQLite core has no knowledge of
5165** its size or internal structure and never deals with the
5166** sqlite3_pcache object except by holding and passing pointers
5167** to the object.
5168**
5169** See [sqlite3_pcache_methods] for additional information.
5170*/
5171typedef struct sqlite3_pcache sqlite3_pcache;
5172
5173/*
5174** CAPI3REF: Application Defined Page Cache.
5175** KEYWORDS: {page cache}
5176** EXPERIMENTAL
5177**
5178** ^(The [sqlite3_config]([SQLITE_CONFIG_PCACHE], ...) interface can
5179** register an alternative page cache implementation by passing in an
5180** instance of the sqlite3_pcache_methods structure.)^ The majority of the
5181** heap memory used by SQLite is used by the page cache to cache data read
5182** from, or ready to be written to, the database file. By implementing a
5183** custom page cache using this API, an application can control more
5184** precisely the amount of memory consumed by SQLite, the way in which
5185** that memory is allocated and released, and the policies used to
5186** determine exactly which parts of a database file are cached and for
5187** how long.
5188**
5189** ^(The contents of the sqlite3_pcache_methods structure are copied to an
5190** internal buffer by SQLite within the call to [sqlite3_config]. Hence
5191** the application may discard the parameter after the call to
5192** [sqlite3_config()] returns.)^
5193**
5194** ^The xInit() method is called once for each call to [sqlite3_initialize()]
5195** (usually only once during the lifetime of the process). ^(The xInit()
5196** method is passed a copy of the sqlite3_pcache_methods.pArg value.)^
5197** ^The xInit() method can set up up global structures and/or any mutexes
5198** required by the custom page cache implementation.
5199**
5200** ^The xShutdown() method is called from within [sqlite3_shutdown()],
5201** if the application invokes this API. It can be used to clean up
5202** any outstanding resources before process shutdown, if required.
5203**
5204** ^SQLite holds a [SQLITE_MUTEX_RECURSIVE] mutex when it invokes
5205** the xInit method, so the xInit method need not be threadsafe. ^The
5206** xShutdown method is only called from [sqlite3_shutdown()] so it does
5207** not need to be threadsafe either. All other methods must be threadsafe
5208** in multithreaded applications.
5209**
5210** ^SQLite will never invoke xInit() more than once without an intervening
5211** call to xShutdown().
5212**
5213** ^The xCreate() method is used to construct a new cache instance. SQLite
5214** will typically create one cache instance for each open database file,
5215** though this is not guaranteed. ^The
5216** first parameter, szPage, is the size in bytes of the pages that must
5217** be allocated by the cache. ^szPage will not be a power of two. ^szPage
5218** will the page size of the database file that is to be cached plus an
5219** increment (here called "R") of about 100 or 200. ^SQLite will use the
5220** extra R bytes on each page to store metadata about the underlying
5221** database page on disk. The value of R depends
5222** on the SQLite version, the target platform, and how SQLite was compiled.
5223** ^R is constant for a particular build of SQLite. ^The second argument to
5224** xCreate(), bPurgeable, is true if the cache being created will
5225** be used to cache database pages of a file stored on disk, or
5226** false if it is used for an in-memory database. ^The cache implementation
5227** does not have to do anything special based with the value of bPurgeable;
5228** it is purely advisory. ^On a cache where bPurgeable is false, SQLite will
5229** never invoke xUnpin() except to deliberately delete a page.
5230** ^In other words, a cache created with bPurgeable set to false will
5231** never contain any unpinned pages.
5232**
5233** ^(The xCachesize() method may be called at any time by SQLite to set the
5234** suggested maximum cache-size (number of pages stored by) the cache
5235** instance passed as the first argument. This is the value configured using
5236** the SQLite "[PRAGMA cache_size]" command.)^ ^As with the bPurgeable
5237** parameter, the implementation is not required to do anything with this
5238** value; it is advisory only.
5239**
5240** ^The xPagecount() method should return the number of pages currently
5241** stored in the cache.
5242**
5243** ^The xFetch() method is used to fetch a page and return a pointer to it.
5244** ^A 'page', in this context, is a buffer of szPage bytes aligned at an
5245** 8-byte boundary. ^The page to be fetched is determined by the key. ^The
5246** mimimum key value is 1. After it has been retrieved using xFetch, the page
5247** is considered to be "pinned".
5248**
5249** ^If the requested page is already in the page cache, then the page cache
5250** implementation must return a pointer to the page buffer with its content
5251** intact. ^(If the requested page is not already in the cache, then the
5252** behavior of the cache implementation is determined by the value of the
5253** createFlag parameter passed to xFetch, according to the following table:
5254**
5255** <table border=1 width=85% align=center>
5256** <tr><th> createFlag <th> Behaviour when page is not already in cache
5257** <tr><td> 0 <td> Do not allocate a new page. Return NULL.
5258** <tr><td> 1 <td> Allocate a new page if it easy and convenient to do so.
5259** Otherwise return NULL.
5260** <tr><td> 2 <td> Make every effort to allocate a new page. Only return
5261** NULL if allocating a new page is effectively impossible.
5262** </table>)^
5263**
5264** SQLite will normally invoke xFetch() with a createFlag of 0 or 1. If
5265** a call to xFetch() with createFlag==1 returns NULL, then SQLite will
5266** attempt to unpin one or more cache pages by spilling the content of
5267** pinned pages to disk and synching the operating system disk cache. After
5268** attempting to unpin pages, the xFetch() method will be invoked again with
5269** a createFlag of 2.
5270**
5271** ^xUnpin() is called by SQLite with a pointer to a currently pinned page
5272** as its second argument. ^(If the third parameter, discard, is non-zero,
5273** then the page should be evicted from the cache. In this case SQLite
5274** assumes that the next time the page is retrieved from the cache using
5275** the xFetch() method, it will be zeroed.)^ ^If the discard parameter is
5276** zero, then the page is considered to be unpinned. ^The cache implementation
5277** may choose to evict unpinned pages at any time.
5278**
5279** ^(The cache is not required to perform any reference counting. A single
5280** call to xUnpin() unpins the page regardless of the number of prior calls
5281** to xFetch().)^
5282**
5283** ^The xRekey() method is used to change the key value associated with the
5284** page passed as the second argument from oldKey to newKey. ^If the cache
5285** previously contains an entry associated with newKey, it should be
5286** discarded. ^Any prior cache entry associated with newKey is guaranteed not
5287** to be pinned.
5288**
5289** ^When SQLite calls the xTruncate() method, the cache must discard all
5290** existing cache entries with page numbers (keys) greater than or equal
5291** to the value of the iLimit parameter passed to xTruncate(). ^If any
5292** of these pages are pinned, they are implicitly unpinned, meaning that
5293** they can be safely discarded.
5294**
5295** ^The xDestroy() method is used to delete a cache allocated by xCreate().
5296** All resources associated with the specified cache should be freed. ^After
5297** calling the xDestroy() method, SQLite considers the [sqlite3_pcache*]
5298** handle invalid, and will not use it with any other sqlite3_pcache_methods
5299** functions.
5300*/
5301typedef struct sqlite3_pcache_methods sqlite3_pcache_methods;
5302struct sqlite3_pcache_methods {
5303 void *pArg;
5304 int (*xInit)(void*);
5305 void (*xShutdown)(void*);
5306 sqlite3_pcache *(*xCreate)(int szPage, int bPurgeable);
5307 void (*xCachesize)(sqlite3_pcache*, int nCachesize);
5308 int (*xPagecount)(sqlite3_pcache*);
5309 void *(*xFetch)(sqlite3_pcache*, unsigned key, int createFlag);
5310 void (*xUnpin)(sqlite3_pcache*, void*, int discard);
5311 void (*xRekey)(sqlite3_pcache*, void*, unsigned oldKey, unsigned newKey);
5312 void (*xTruncate)(sqlite3_pcache*, unsigned iLimit);
5313 void (*xDestroy)(sqlite3_pcache*);
5314};
5315
5316/*
5317** CAPI3REF: Online Backup Object
5318** EXPERIMENTAL
5319**
5320** The sqlite3_backup object records state information about an ongoing
5321** online backup operation. ^The sqlite3_backup object is created by
5322** a call to [sqlite3_backup_init()] and is destroyed by a call to
5323** [sqlite3_backup_finish()].
5324**
5325** See Also: [Using the SQLite Online Backup API]
5326*/
5327typedef struct sqlite3_backup sqlite3_backup;
5328
5329/*
5330** CAPI3REF: Online Backup API.
5331** EXPERIMENTAL
5332**
5333** The backup API copies the content of one database into another.
5334** It is useful either for creating backups of databases or
5335** for copying in-memory databases to or from persistent files.
5336**
5337** See Also: [Using the SQLite Online Backup API]
5338**
5339** ^Exclusive access is required to the destination database for the
5340** duration of the operation. ^However the source database is only
5341** read-locked while it is actually being read; it is not locked
5342** continuously for the entire backup operation. ^Thus, the backup may be
5343** performed on a live source database without preventing other users from
5344** reading or writing to the source database while the backup is underway.
5345**
5346** ^(To perform a backup operation:
5347** <ol>
5348** <li><b>sqlite3_backup_init()</b> is called once to initialize the
5349** backup,
5350** <li><b>sqlite3_backup_step()</b> is called one or more times to transfer
5351** the data between the two databases, and finally
5352** <li><b>sqlite3_backup_finish()</b> is called to release all resources
5353** associated with the backup operation.
5354** </ol>)^
5355** There should be exactly one call to sqlite3_backup_finish() for each
5356** successful call to sqlite3_backup_init().
5357**
5358** <b>sqlite3_backup_init()</b>
5359**
5360** ^The D and N arguments to sqlite3_backup_init(D,N,S,M) are the
5361** [database connection] associated with the destination database
5362** and the database name, respectively.
5363** ^The database name is "main" for the main database, "temp" for the
5364** temporary database, or the name specified after the AS keyword in
5365** an [ATTACH] statement for an attached database.
5366** ^The S and M arguments passed to
5367** sqlite3_backup_init(D,N,S,M) identify the [database connection]
5368** and database name of the source database, respectively.
5369** ^The source and destination [database connections] (parameters S and D)
5370** must be different or else sqlite3_backup_init(D,N,S,M) will file with
5371** an error.
5372**
5373** ^If an error occurs within sqlite3_backup_init(D,N,S,M), then NULL is
5374** returned and an error code and error message are store3d in the
5375** destination [database connection] D.
5376** ^The error code and message for the failed call to sqlite3_backup_init()
5377** can be retrieved using the [sqlite3_errcode()], [sqlite3_errmsg()], and/or
5378** [sqlite3_errmsg16()] functions.
5379** ^A successful call to sqlite3_backup_init() returns a pointer to an
5380** [sqlite3_backup] object.
5381** ^The [sqlite3_backup] object may be used with the sqlite3_backup_step() and
5382** sqlite3_backup_finish() functions to perform the specified backup
5383** operation.
5384**
5385** <b>sqlite3_backup_step()</b>
5386**
5387** ^Function sqlite3_backup_step(B,N) will copy up to N pages between
5388** the source and destination databases specified by [sqlite3_backup] object B.
5389** ^If N is negative, all remaining source pages are copied.
5390** ^If sqlite3_backup_step(B,N) successfully copies N pages and there
5391** are still more pages to be copied, then the function resturns [SQLITE_OK].
5392** ^If sqlite3_backup_step(B,N) successfully finishes copying all pages
5393** from source to destination, then it returns [SQLITE_DONE].
5394** ^If an error occurs while running sqlite3_backup_step(B,N),
5395** then an [error code] is returned. ^As well as [SQLITE_OK] and
5396** [SQLITE_DONE], a call to sqlite3_backup_step() may return [SQLITE_READONLY],
5397** [SQLITE_NOMEM], [SQLITE_BUSY], [SQLITE_LOCKED], or an
5398** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX] extended error code.
5399**
5400** ^The sqlite3_backup_step() might return [SQLITE_READONLY] if the destination
5401** database was opened read-only or if
5402** the destination is an in-memory database with a different page size
5403** from the source database.
5404**
5405** ^If sqlite3_backup_step() cannot obtain a required file-system lock, then
5406** the [sqlite3_busy_handler | busy-handler function]
5407** is invoked (if one is specified). ^If the
5408** busy-handler returns non-zero before the lock is available, then
5409** [SQLITE_BUSY] is returned to the caller. ^In this case the call to
5410** sqlite3_backup_step() can be retried later. ^If the source
5411** [database connection]
5412** is being used to write to the source database when sqlite3_backup_step()
5413** is called, then [SQLITE_LOCKED] is returned immediately. ^Again, in this
5414** case the call to sqlite3_backup_step() can be retried later on. ^(If
5415** [SQLITE_IOERR_ACCESS | SQLITE_IOERR_XXX], [SQLITE_NOMEM], or
5416** [SQLITE_READONLY] is returned, then
5417** there is no point in retrying the call to sqlite3_backup_step(). These
5418** errors are considered fatal.)^ The application must accept
5419** that the backup operation has failed and pass the backup operation handle
5420** to the sqlite3_backup_finish() to release associated resources.
5421**
5422** ^The first call to sqlite3_backup_step() obtains an exclusive lock
5423** on the destination file. ^The exclusive lock is not released until either
5424** sqlite3_backup_finish() is called or the backup operation is complete
5425** and sqlite3_backup_step() returns [SQLITE_DONE]. ^Every call to
5426** sqlite3_backup_step() obtains a [shared lock] on the source database that
5427** lasts for the duration of the sqlite3_backup_step() call.
5428** ^Because the source database is not locked between calls to
5429** sqlite3_backup_step(), the source database may be modified mid-way
5430** through the backup process. ^If the source database is modified by an
5431** external process or via a database connection other than the one being
5432** used by the backup operation, then the backup will be automatically
5433** restarted by the next call to sqlite3_backup_step(). ^If the source
5434** database is modified by the using the same database connection as is used
5435** by the backup operation, then the backup database is automatically
5436** updated at the same time.
5437**
5438** <b>sqlite3_backup_finish()</b>
5439**
5440** When sqlite3_backup_step() has returned [SQLITE_DONE], or when the
5441** application wishes to abandon the backup operation, the application
5442** should destroy the [sqlite3_backup] by passing it to sqlite3_backup_finish().
5443** ^The sqlite3_backup_finish() interfaces releases all
5444** resources associated with the [sqlite3_backup] object.
5445** ^If sqlite3_backup_step() has not yet returned [SQLITE_DONE], then any
5446** active write-transaction on the destination database is rolled back.
5447** The [sqlite3_backup] object is invalid
5448** and may not be used following a call to sqlite3_backup_finish().
5449**
5450** ^The value returned by sqlite3_backup_finish is [SQLITE_OK] if no
5451** sqlite3_backup_step() errors occurred, regardless or whether or not
5452** sqlite3_backup_step() completed.
5453** ^If an out-of-memory condition or IO error occurred during any prior
5454** sqlite3_backup_step() call on the same [sqlite3_backup] object, then
5455** sqlite3_backup_finish() returns the corresponding [error code].
5456**
5457** ^A return of [SQLITE_BUSY] or [SQLITE_LOCKED] from sqlite3_backup_step()
5458** is not a permanent error and does not affect the return value of
5459** sqlite3_backup_finish().
5460**
5461** <b>sqlite3_backup_remaining(), sqlite3_backup_pagecount()</b>
5462**
5463** ^Each call to sqlite3_backup_step() sets two values inside
5464** the [sqlite3_backup] object: the number of pages still to be backed
5465** up and the total number of pages in the source databae file.
5466** The sqlite3_backup_remaining() and sqlite3_backup_pagecount() interfaces
5467** retrieve these two values, respectively.
5468**
5469** ^The values returned by these functions are only updated by
5470** sqlite3_backup_step(). ^If the source database is modified during a backup
5471** operation, then the values are not updated to account for any extra
5472** pages that need to be updated or the size of the source database file
5473** changing.
5474**
5475** <b>Concurrent Usage of Database Handles</b>
5476**
5477** ^The source [database connection] may be used by the application for other
5478** purposes while a backup operation is underway or being initialized.
5479** ^If SQLite is compiled and configured to support threadsafe database
5480** connections, then the source database connection may be used concurrently
5481** from within other threads.
5482**
5483** However, the application must guarantee that the destination
5484** [database connection] is not passed to any other API (by any thread) after
5485** sqlite3_backup_init() is called and before the corresponding call to
5486** sqlite3_backup_finish(). SQLite does not currently check to see
5487** if the application incorrectly accesses the destination [database connection]
5488** and so no error code is reported, but the operations may malfunction
5489** nevertheless. Use of the destination database connection while a
5490** backup is in progress might also also cause a mutex deadlock.
5491**
5492** If running in [shared cache mode], the application must
5493** guarantee that the shared cache used by the destination database
5494** is not accessed while the backup is running. In practice this means
5495** that the application must guarantee that the disk file being
5496** backed up to is not accessed by any connection within the process,
5497** not just the specific connection that was passed to sqlite3_backup_init().
5498**
5499** The [sqlite3_backup] object itself is partially threadsafe. Multiple
5500** threads may safely make multiple concurrent calls to sqlite3_backup_step().
5501** However, the sqlite3_backup_remaining() and sqlite3_backup_pagecount()
5502** APIs are not strictly speaking threadsafe. If they are invoked at the
5503** same time as another thread is invoking sqlite3_backup_step() it is
5504** possible that they return invalid values.
5505*/
5506SQLITE_API sqlite3_backup *sqlite3_backup_init(
5507 sqlite3 *pDest, /* Destination database handle */
5508 const char *zDestName, /* Destination database name */
5509 sqlite3 *pSource, /* Source database handle */
5510 const char *zSourceName /* Source database name */
5511);
5512SQLITE_API int sqlite3_backup_step(sqlite3_backup *p, int nPage);
5513SQLITE_API int sqlite3_backup_finish(sqlite3_backup *p);
5514SQLITE_API int sqlite3_backup_remaining(sqlite3_backup *p);
5515SQLITE_API int sqlite3_backup_pagecount(sqlite3_backup *p);
5516
5517/*
5518** CAPI3REF: Unlock Notification
5519** EXPERIMENTAL
5520**
5521** ^When running in shared-cache mode, a database operation may fail with
5522** an [SQLITE_LOCKED] error if the required locks on the shared-cache or
5523** individual tables within the shared-cache cannot be obtained. See
5524** [SQLite Shared-Cache Mode] for a description of shared-cache locking.
5525** ^This API may be used to register a callback that SQLite will invoke
5526** when the connection currently holding the required lock relinquishes it.
5527** ^This API is only available if the library was compiled with the
5528** [SQLITE_ENABLE_UNLOCK_NOTIFY] C-preprocessor symbol defined.
5529**
5530** See Also: [Using the SQLite Unlock Notification Feature].
5531**
5532** ^Shared-cache locks are released when a database connection concludes
5533** its current transaction, either by committing it or rolling it back.
5534**
5535** ^When a connection (known as the blocked connection) fails to obtain a
5536** shared-cache lock and SQLITE_LOCKED is returned to the caller, the
5537** identity of the database connection (the blocking connection) that
5538** has locked the required resource is stored internally. ^After an
5539** application receives an SQLITE_LOCKED error, it may call the
5540** sqlite3_unlock_notify() method with the blocked connection handle as
5541** the first argument to register for a callback that will be invoked
5542** when the blocking connections current transaction is concluded. ^The
5543** callback is invoked from within the [sqlite3_step] or [sqlite3_close]
5544** call that concludes the blocking connections transaction.
5545**
5546** ^(If sqlite3_unlock_notify() is called in a multi-threaded application,
5547** there is a chance that the blocking connection will have already
5548** concluded its transaction by the time sqlite3_unlock_notify() is invoked.
5549** If this happens, then the specified callback is invoked immediately,
5550** from within the call to sqlite3_unlock_notify().)^
5551**
5552** ^If the blocked connection is attempting to obtain a write-lock on a
5553** shared-cache table, and more than one other connection currently holds
5554** a read-lock on the same table, then SQLite arbitrarily selects one of
5555** the other connections to use as the blocking connection.
5556**
5557** ^(There may be at most one unlock-notify callback registered by a
5558** blocked connection. If sqlite3_unlock_notify() is called when the
5559** blocked connection already has a registered unlock-notify callback,
5560** then the new callback replaces the old.)^ ^If sqlite3_unlock_notify() is
5561** called with a NULL pointer as its second argument, then any existing
5562** unlock-notify callback is cancelled. ^The blocked connections
5563** unlock-notify callback may also be canceled by closing the blocked
5564** connection using [sqlite3_close()].
5565**
5566** The unlock-notify callback is not reentrant. If an application invokes
5567** any sqlite3_xxx API functions from within an unlock-notify callback, a
5568** crash or deadlock may be the result.
5569**
5570** ^Unless deadlock is detected (see below), sqlite3_unlock_notify() always
5571** returns SQLITE_OK.
5572**
5573** <b>Callback Invocation Details</b>
5574**
5575** When an unlock-notify callback is registered, the application provides a
5576** single void* pointer that is passed to the callback when it is invoked.
5577** However, the signature of the callback function allows SQLite to pass
5578** it an array of void* context pointers. The first argument passed to
5579** an unlock-notify callback is a pointer to an array of void* pointers,
5580** and the second is the number of entries in the array.
5581**
5582** When a blocking connections transaction is concluded, there may be
5583** more than one blocked connection that has registered for an unlock-notify
5584** callback. ^If two or more such blocked connections have specified the
5585** same callback function, then instead of invoking the callback function
5586** multiple times, it is invoked once with the set of void* context pointers
5587** specified by the blocked connections bundled together into an array.
5588** This gives the application an opportunity to prioritize any actions
5589** related to the set of unblocked database connections.
5590**
5591** <b>Deadlock Detection</b>
5592**
5593** Assuming that after registering for an unlock-notify callback a
5594** database waits for the callback to be issued before taking any further
5595** action (a reasonable assumption), then using this API may cause the
5596** application to deadlock. For example, if connection X is waiting for
5597** connection Y's transaction to be concluded, and similarly connection
5598** Y is waiting on connection X's transaction, then neither connection
5599** will proceed and the system may remain deadlocked indefinitely.
5600**
5601** To avoid this scenario, the sqlite3_unlock_notify() performs deadlock
5602** detection. ^If a given call to sqlite3_unlock_notify() would put the
5603** system in a deadlocked state, then SQLITE_LOCKED is returned and no
5604** unlock-notify callback is registered. The system is said to be in
5605** a deadlocked state if connection A has registered for an unlock-notify
5606** callback on the conclusion of connection B's transaction, and connection
5607** B has itself registered for an unlock-notify callback when connection
5608** A's transaction is concluded. ^Indirect deadlock is also detected, so
5609** the system is also considered to be deadlocked if connection B has
5610** registered for an unlock-notify callback on the conclusion of connection
5611** C's transaction, where connection C is waiting on connection A. ^Any
5612** number of levels of indirection are allowed.
5613**
5614** <b>The "DROP TABLE" Exception</b>
5615**
5616** When a call to [sqlite3_step()] returns SQLITE_LOCKED, it is almost
5617** always appropriate to call sqlite3_unlock_notify(). There is however,
5618** one exception. When executing a "DROP TABLE" or "DROP INDEX" statement,
5619** SQLite checks if there are any currently executing SELECT statements
5620** that belong to the same connection. If there are, SQLITE_LOCKED is
5621** returned. In this case there is no "blocking connection", so invoking
5622** sqlite3_unlock_notify() results in the unlock-notify callback being
5623** invoked immediately. If the application then re-attempts the "DROP TABLE"
5624** or "DROP INDEX" query, an infinite loop might be the result.
5625**
5626** One way around this problem is to check the extended error code returned
5627** by an sqlite3_step() call. ^(If there is a blocking connection, then the
5628** extended error code is set to SQLITE_LOCKED_SHAREDCACHE. Otherwise, in
5629** the special "DROP TABLE/INDEX" case, the extended error code is just
5630** SQLITE_LOCKED.)^
5631*/
5632SQLITE_API int sqlite3_unlock_notify(
5633 sqlite3 *pBlocked, /* Waiting connection */
5634 void (*xNotify)(void **apArg, int nArg), /* Callback function to invoke */
5635 void *pNotifyArg /* Argument to pass to xNotify */
5636);
5637
5638
5639/*
5640** CAPI3REF: String Comparison
5641** EXPERIMENTAL
5642**
5643** ^The [sqlite3_strnicmp()] API allows applications and extensions to
5644** compare the contents of two buffers containing UTF-8 strings in a
5645** case-indendent fashion, using the same definition of case independence
5646** that SQLite uses internally when comparing identifiers.
5647*/
5648SQLITE_API int sqlite3_strnicmp(const char *, const char *, int);
The Android Open Source Project7790ef52009-03-03 19:30:40 -08005649
5650// Begin Android add
5651/*
5652** Android additional API.
5653**
5654** This function changes the default behavior of BEGIN to IMMEDIATE if called
5655** with immediate=1.
5656** Calling with immediate=0 will revert to DEFERRED.
5657*/
5658int sqlite3_set_transaction_default_immediate(sqlite3*, int immediate);
5659// End Android add
Vasu Nori9d9edcf2010-03-01 15:28:13 -08005660
The Android Open Source Project7790ef52009-03-03 19:30:40 -08005661/*
5662** Undo the hack that converts floating point types to integer for
5663** builds on processors without floating point support.
5664*/
5665#ifdef SQLITE_OMIT_FLOATING_POINT
5666# undef double
5667#endif
5668
5669#ifdef __cplusplus
5670} /* End of the 'extern "C"' block */
5671#endif
5672#endif
Vasu Noria4356a02010-01-20 15:10:57 -08005673