drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 1 | /* |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 2 | ** 2001 September 15 |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 3 | ** |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 4 | ** The author disclaims copyright to this source code. In place of |
| 5 | ** a legal notice, here is a blessing: |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 6 | ** |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 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. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 10 | ** |
| 11 | ************************************************************************* |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 12 | ** This header file defines the interface that the SQLite library |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 13 | ** presents to client programs. |
| 14 | ** |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 15 | ** @(#) $Id: sqlite.h.in,v 1.61 2004/05/08 08:23:33 danielk1977 Exp $ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 16 | */ |
| 17 | #ifndef _SQLITE_H_ |
| 18 | #define _SQLITE_H_ |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 19 | #include <stdarg.h> /* Needed for the definition of va_list */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 20 | |
| 21 | /* |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 22 | ** Make sure we can call this stuff from C++. |
| 23 | */ |
| 24 | #ifdef __cplusplus |
| 25 | extern "C" { |
| 26 | #endif |
| 27 | |
| 28 | /* |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 29 | ** The version of the SQLite library. |
| 30 | */ |
| 31 | #define SQLITE_VERSION "--VERS--" |
| 32 | |
| 33 | /* |
drh | b217a57 | 2000-08-22 13:40:18 +0000 | [diff] [blame] | 34 | ** The version string is also compiled into the library so that a program |
| 35 | ** can check to make sure that the lib*.a file and the *.h file are from |
| 36 | ** the same version. |
| 37 | */ |
| 38 | extern const char sqlite_version[]; |
drh | 303aaa7 | 2000-08-17 10:22:34 +0000 | [diff] [blame] | 39 | |
| 40 | /* |
drh | 297ecf1 | 2001-04-05 15:57:13 +0000 | [diff] [blame] | 41 | ** The SQLITE_UTF8 macro is defined if the library expects to see |
| 42 | ** UTF-8 encoded data. The SQLITE_ISO8859 macro is defined if the |
| 43 | ** iso8859 encoded should be used. |
| 44 | */ |
| 45 | #define SQLITE_--ENCODING-- 1 |
| 46 | |
| 47 | /* |
| 48 | ** The following constant holds one of two strings, "UTF-8" or "iso8859", |
| 49 | ** depending on which character encoding the SQLite library expects to |
| 50 | ** see. The character encoding makes a difference for the LIKE and GLOB |
| 51 | ** operators and for the LENGTH() and SUBSTR() functions. |
| 52 | */ |
drh | fbc3eab | 2001-04-06 16:13:42 +0000 | [diff] [blame] | 53 | extern const char sqlite_encoding[]; |
drh | 297ecf1 | 2001-04-05 15:57:13 +0000 | [diff] [blame] | 54 | |
| 55 | /* |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 56 | ** Each open sqlite database is represented by an instance of the |
| 57 | ** following opaque structure. |
| 58 | */ |
| 59 | typedef struct sqlite sqlite; |
| 60 | |
| 61 | /* |
| 62 | ** A function to open a new sqlite database. |
| 63 | ** |
| 64 | ** If the database does not exist and mode indicates write |
| 65 | ** permission, then a new database is created. If the database |
| 66 | ** does not exist and mode does not indicate write permission, |
| 67 | ** then the open fails, an error message generated (if errmsg!=0) |
| 68 | ** and the function returns 0. |
| 69 | ** |
| 70 | ** If mode does not indicates user write permission, then the |
| 71 | ** database is opened read-only. |
| 72 | ** |
| 73 | ** The Truth: As currently implemented, all databases are opened |
| 74 | ** for writing all the time. Maybe someday we will provide the |
| 75 | ** ability to open a database readonly. The mode parameters is |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 76 | ** provided in anticipation of that enhancement. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 77 | */ |
| 78 | sqlite *sqlite_open(const char *filename, int mode, char **errmsg); |
| 79 | |
| 80 | /* |
| 81 | ** A function to close the database. |
| 82 | ** |
| 83 | ** Call this function with a pointer to a structure that was previously |
| 84 | ** returned from sqlite_open() and the corresponding database will by closed. |
| 85 | */ |
| 86 | void sqlite_close(sqlite *); |
| 87 | |
| 88 | /* |
| 89 | ** The type for a callback function. |
| 90 | */ |
| 91 | typedef int (*sqlite_callback)(void*,int,char**, char**); |
| 92 | |
| 93 | /* |
| 94 | ** A function to executes one or more statements of SQL. |
| 95 | ** |
| 96 | ** If one or more of the SQL statements are queries, then |
| 97 | ** the callback function specified by the 3rd parameter is |
| 98 | ** invoked once for each row of the query result. This callback |
| 99 | ** should normally return 0. If the callback returns a non-zero |
| 100 | ** value then the query is aborted, all subsequent SQL statements |
drh | 58b9576 | 2000-06-02 01:17:37 +0000 | [diff] [blame] | 101 | ** are skipped and the sqlite_exec() function returns the SQLITE_ABORT. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 102 | ** |
| 103 | ** The 4th parameter is an arbitrary pointer that is passed |
| 104 | ** to the callback function as its first parameter. |
| 105 | ** |
| 106 | ** The 2nd parameter to the callback function is the number of |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 107 | ** columns in the query result. The 3rd parameter to the callback |
| 108 | ** is an array of strings holding the values for each column. |
| 109 | ** The 4th parameter to the callback is an array of strings holding |
| 110 | ** the names of each column. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 111 | ** |
| 112 | ** The callback function may be NULL, even for queries. A NULL |
| 113 | ** callback is not an error. It just means that no callback |
| 114 | ** will be invoked. |
| 115 | ** |
| 116 | ** If an error occurs while parsing or evaluating the SQL (but |
| 117 | ** not while executing the callback) then an appropriate error |
| 118 | ** message is written into memory obtained from malloc() and |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 119 | ** *errmsg is made to point to that message. The calling function |
| 120 | ** is responsible for freeing the memory that holds the error |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 121 | ** message. Use sqlite_freemem() for this. If errmsg==NULL, |
| 122 | ** then no error message is ever written. |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 123 | ** |
| 124 | ** The return value is is SQLITE_OK if there are no errors and |
| 125 | ** some other return code if there is an error. The particular |
| 126 | ** return value depends on the type of error. |
drh | 58b9576 | 2000-06-02 01:17:37 +0000 | [diff] [blame] | 127 | ** |
| 128 | ** If the query could not be executed because a database file is |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 129 | ** locked or busy, then this function returns SQLITE_BUSY. (This |
| 130 | ** behavior can be modified somewhat using the sqlite_busy_handler() |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 131 | ** and sqlite_busy_timeout() functions below.) |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 132 | */ |
| 133 | int sqlite_exec( |
| 134 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 135 | const char *sql, /* SQL to be executed */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 136 | sqlite_callback, /* Callback function */ |
| 137 | void *, /* 1st argument to callback function */ |
| 138 | char **errmsg /* Error msg written here */ |
| 139 | ); |
| 140 | |
drh | 58b9576 | 2000-06-02 01:17:37 +0000 | [diff] [blame] | 141 | /* |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 142 | ** Return values for sqlite_exec() and sqlite_step() |
drh | 58b9576 | 2000-06-02 01:17:37 +0000 | [diff] [blame] | 143 | */ |
drh | 717e640 | 2001-09-27 03:22:32 +0000 | [diff] [blame] | 144 | #define SQLITE_OK 0 /* Successful result */ |
| 145 | #define SQLITE_ERROR 1 /* SQL error or missing database */ |
| 146 | #define SQLITE_INTERNAL 2 /* An internal logic error in SQLite */ |
| 147 | #define SQLITE_PERM 3 /* Access permission denied */ |
| 148 | #define SQLITE_ABORT 4 /* Callback routine requested an abort */ |
| 149 | #define SQLITE_BUSY 5 /* The database file is locked */ |
| 150 | #define SQLITE_LOCKED 6 /* A table in the database is locked */ |
| 151 | #define SQLITE_NOMEM 7 /* A malloc() failed */ |
| 152 | #define SQLITE_READONLY 8 /* Attempt to write a readonly database */ |
| 153 | #define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite_interrupt() */ |
| 154 | #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ |
| 155 | #define SQLITE_CORRUPT 11 /* The database disk image is malformed */ |
| 156 | #define SQLITE_NOTFOUND 12 /* (Internal Only) Table or record not found */ |
| 157 | #define SQLITE_FULL 13 /* Insertion failed because database is full */ |
| 158 | #define SQLITE_CANTOPEN 14 /* Unable to open the database file */ |
| 159 | #define SQLITE_PROTOCOL 15 /* Database lock protocol error */ |
| 160 | #define SQLITE_EMPTY 16 /* (Internal Only) Database table is empty */ |
| 161 | #define SQLITE_SCHEMA 17 /* The database schema changed */ |
| 162 | #define SQLITE_TOOBIG 18 /* Too much data for one row of a table */ |
| 163 | #define SQLITE_CONSTRAINT 19 /* Abort due to contraint violation */ |
drh | 8aff101 | 2001-12-22 14:49:24 +0000 | [diff] [blame] | 164 | #define SQLITE_MISMATCH 20 /* Data type mismatch */ |
drh | 247be43 | 2002-05-10 05:44:55 +0000 | [diff] [blame] | 165 | #define SQLITE_MISUSE 21 /* Library used incorrectly */ |
drh | 8766c34 | 2002-11-09 00:33:15 +0000 | [diff] [blame] | 166 | #define SQLITE_NOLFS 22 /* Uses OS features not supported on host */ |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 167 | #define SQLITE_AUTH 23 /* Authorization denied */ |
drh | 1c2d841 | 2003-03-31 00:30:47 +0000 | [diff] [blame] | 168 | #define SQLITE_FORMAT 24 /* Auxiliary database format error */ |
drh | 7c972de | 2003-09-06 22:18:07 +0000 | [diff] [blame] | 169 | #define SQLITE_RANGE 25 /* 2nd parameter to sqlite_bind out of range */ |
drh | c602f9a | 2004-02-12 19:01:04 +0000 | [diff] [blame] | 170 | #define SQLITE_NOTADB 26 /* File opened that is not a database file */ |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 171 | #define SQLITE_ROW 100 /* sqlite_step() has another row ready */ |
| 172 | #define SQLITE_DONE 101 /* sqlite_step() has finished executing */ |
drh | 717e640 | 2001-09-27 03:22:32 +0000 | [diff] [blame] | 173 | |
drh | af9ff33 | 2002-01-16 21:00:27 +0000 | [diff] [blame] | 174 | /* |
| 175 | ** Each entry in an SQLite table has a unique integer key. (The key is |
| 176 | ** the value of the INTEGER PRIMARY KEY column if there is such a column, |
| 177 | ** otherwise the key is generated at random. The unique key is always |
| 178 | ** available as the ROWID, OID, or _ROWID_ column.) The following routine |
| 179 | ** returns the integer key of the most recent insert in the database. |
| 180 | ** |
| 181 | ** This function is similar to the mysql_insert_id() function from MySQL. |
| 182 | */ |
| 183 | int sqlite_last_insert_rowid(sqlite*); |
| 184 | |
drh | c8d30ac | 2002-04-12 10:08:59 +0000 | [diff] [blame] | 185 | /* |
| 186 | ** This function returns the number of database rows that were changed |
| 187 | ** (or inserted or deleted) by the most recent called sqlite_exec(). |
| 188 | ** |
| 189 | ** All changes are counted, even if they were later undone by a |
| 190 | ** ROLLBACK or ABORT. Except, changes associated with creating and |
| 191 | ** dropping tables are not counted. |
| 192 | ** |
| 193 | ** If a callback invokes sqlite_exec() recursively, then the changes |
| 194 | ** in the inner, recursive call are counted together with the changes |
| 195 | ** in the outer call. |
| 196 | ** |
| 197 | ** SQLite implements the command "DELETE FROM table" without a WHERE clause |
| 198 | ** by dropping and recreating the table. (This is much faster than going |
| 199 | ** through and deleting individual elements form the table.) Because of |
| 200 | ** this optimization, the change count for "DELETE FROM table" will be |
| 201 | ** zero regardless of the number of elements that were originally in the |
| 202 | ** table. To get an accurate count of the number of rows deleted, use |
| 203 | ** "DELETE FROM table WHERE 1" instead. |
| 204 | */ |
| 205 | int sqlite_changes(sqlite*); |
| 206 | |
rdc | f146a77 | 2004-02-25 22:51:06 +0000 | [diff] [blame] | 207 | /* |
| 208 | ** This function returns the number of database rows that were changed |
| 209 | ** by the last INSERT, UPDATE, or DELETE statment executed by sqlite_exec(), |
| 210 | ** or by the last VM to run to completion. The change count is not updated |
| 211 | ** by SQL statements other than INSERT, UPDATE or DELETE. |
| 212 | ** |
| 213 | ** Changes are counted, even if they are later undone by a ROLLBACK or |
| 214 | ** ABORT. Changes associated with trigger programs that execute as a |
| 215 | ** result of the INSERT, UPDATE, or DELETE statement are not counted. |
| 216 | ** |
| 217 | ** If a callback invokes sqlite_exec() recursively, then the changes |
| 218 | ** in the inner, recursive call are counted together with the changes |
| 219 | ** in the outer call. |
| 220 | ** |
| 221 | ** SQLite implements the command "DELETE FROM table" without a WHERE clause |
| 222 | ** by dropping and recreating the table. (This is much faster than going |
| 223 | ** through and deleting individual elements form the table.) Because of |
| 224 | ** this optimization, the change count for "DELETE FROM table" will be |
| 225 | ** zero regardless of the number of elements that were originally in the |
| 226 | ** table. To get an accurate count of the number of rows deleted, use |
| 227 | ** "DELETE FROM table WHERE 1" instead. |
| 228 | ** |
| 229 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
| 230 | */ |
| 231 | int sqlite_last_statement_changes(sqlite*); |
| 232 | |
drh | 717e640 | 2001-09-27 03:22:32 +0000 | [diff] [blame] | 233 | /* If the parameter to this routine is one of the return value constants |
| 234 | ** defined above, then this routine returns a constant text string which |
| 235 | ** descripts (in English) the meaning of the return value. |
| 236 | */ |
drh | 6d4abfb | 2001-10-22 02:58:08 +0000 | [diff] [blame] | 237 | const char *sqlite_error_string(int); |
| 238 | #define sqliteErrStr sqlite_error_string /* Legacy. Do not use in new code. */ |
drh | 4c50439 | 2000-10-16 22:06:40 +0000 | [diff] [blame] | 239 | |
| 240 | /* This function causes any pending database operation to abort and |
| 241 | ** return at its earliest opportunity. This routine is typically |
drh | 66b89c8 | 2000-11-28 20:47:17 +0000 | [diff] [blame] | 242 | ** called in response to a user action such as pressing "Cancel" |
drh | 4c50439 | 2000-10-16 22:06:40 +0000 | [diff] [blame] | 243 | ** or Ctrl-C where the user wants a long query operation to halt |
| 244 | ** immediately. |
| 245 | */ |
| 246 | void sqlite_interrupt(sqlite*); |
| 247 | |
drh | eec553b | 2000-06-02 01:51:20 +0000 | [diff] [blame] | 248 | |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 249 | /* This function returns true if the given input string comprises |
| 250 | ** one or more complete SQL statements. |
| 251 | ** |
| 252 | ** The algorithm is simple. If the last token other than spaces |
| 253 | ** and comments is a semicolon, then return true. otherwise return |
| 254 | ** false. |
| 255 | */ |
| 256 | int sqlite_complete(const char *sql); |
| 257 | |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 258 | /* |
| 259 | ** This routine identifies a callback function that is invoked |
| 260 | ** whenever an attempt is made to open a database table that is |
| 261 | ** currently locked by another process or thread. If the busy callback |
| 262 | ** is NULL, then sqlite_exec() returns SQLITE_BUSY immediately if |
| 263 | ** it finds a locked table. If the busy callback is not NULL, then |
| 264 | ** sqlite_exec() invokes the callback with three arguments. The |
| 265 | ** second argument is the name of the locked table and the third |
| 266 | ** argument is the number of times the table has been busy. If the |
| 267 | ** busy callback returns 0, then sqlite_exec() immediately returns |
| 268 | ** SQLITE_BUSY. If the callback returns non-zero, then sqlite_exec() |
| 269 | ** tries to open the table again and the cycle repeats. |
| 270 | ** |
| 271 | ** The default busy callback is NULL. |
| 272 | ** |
| 273 | ** Sqlite is re-entrant, so the busy handler may start a new query. |
| 274 | ** (It is not clear why anyone would every want to do this, but it |
| 275 | ** is allowed, in theory.) But the busy handler may not close the |
| 276 | ** database. Closing the database from a busy handler will delete |
| 277 | ** data structures out from under the executing query and will |
| 278 | ** probably result in a coredump. |
| 279 | */ |
| 280 | void sqlite_busy_handler(sqlite*, int(*)(void*,const char*,int), void*); |
| 281 | |
| 282 | /* |
| 283 | ** This routine sets a busy handler that sleeps for a while when a |
| 284 | ** table is locked. The handler will sleep multiple times until |
| 285 | ** at least "ms" milleseconds of sleeping have been done. After |
| 286 | ** "ms" milleseconds of sleeping, the handler returns 0 which |
| 287 | ** causes sqlite_exec() to return SQLITE_BUSY. |
| 288 | ** |
| 289 | ** Calling this routine with an argument less than or equal to zero |
| 290 | ** turns off all busy handlers. |
| 291 | */ |
| 292 | void sqlite_busy_timeout(sqlite*, int ms); |
| 293 | |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 294 | /* |
| 295 | ** This next routine is really just a wrapper around sqlite_exec(). |
| 296 | ** Instead of invoking a user-supplied callback for each row of the |
| 297 | ** result, this routine remembers each row of the result in memory |
| 298 | ** obtained from malloc(), then returns all of the result after the |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 299 | ** query has finished. |
| 300 | ** |
| 301 | ** As an example, suppose the query result where this table: |
| 302 | ** |
| 303 | ** Name | Age |
| 304 | ** ----------------------- |
| 305 | ** Alice | 43 |
| 306 | ** Bob | 28 |
| 307 | ** Cindy | 21 |
| 308 | ** |
| 309 | ** If the 3rd argument were &azResult then after the function returns |
drh | 98699b5 | 2000-10-09 12:57:00 +0000 | [diff] [blame] | 310 | ** azResult will contain the following data: |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 311 | ** |
| 312 | ** azResult[0] = "Name"; |
| 313 | ** azResult[1] = "Age"; |
| 314 | ** azResult[2] = "Alice"; |
| 315 | ** azResult[3] = "43"; |
| 316 | ** azResult[4] = "Bob"; |
| 317 | ** azResult[5] = "28"; |
| 318 | ** azResult[6] = "Cindy"; |
| 319 | ** azResult[7] = "21"; |
| 320 | ** |
| 321 | ** Notice that there is an extra row of data containing the column |
| 322 | ** headers. But the *nrow return value is still 3. *ncolumn is |
| 323 | ** set to 2. In general, the number of values inserted into azResult |
| 324 | ** will be ((*nrow) + 1)*(*ncolumn). |
| 325 | ** |
| 326 | ** After the calling function has finished using the result, it should |
| 327 | ** pass the result data pointer to sqlite_free_table() in order to |
| 328 | ** release the memory that was malloc-ed. Because of the way the |
| 329 | ** malloc() happens, the calling function must not try to call |
| 330 | ** malloc() directly. Only sqlite_free_table() is able to release |
| 331 | ** the memory properly and safely. |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 332 | ** |
| 333 | ** The return value of this routine is the same as from sqlite_exec(). |
| 334 | */ |
| 335 | int sqlite_get_table( |
| 336 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 337 | const char *sql, /* SQL to be executed */ |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 338 | char ***resultp, /* Result written to a char *[] that this points to */ |
| 339 | int *nrow, /* Number of result rows written here */ |
| 340 | int *ncolumn, /* Number of result columns written here */ |
| 341 | char **errmsg /* Error msg written here */ |
| 342 | ); |
| 343 | |
| 344 | /* |
| 345 | ** Call this routine to free the memory that sqlite_get_table() allocated. |
| 346 | */ |
| 347 | void sqlite_free_table(char **result); |
| 348 | |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 349 | /* |
| 350 | ** The following routines are wrappers around sqlite_exec() and |
drh | 98699b5 | 2000-10-09 12:57:00 +0000 | [diff] [blame] | 351 | ** sqlite_get_table(). The only difference between the routines that |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 352 | ** follow and the originals is that the second argument to the |
| 353 | ** routines that follow is really a printf()-style format |
| 354 | ** string describing the SQL to be executed. Arguments to the format |
| 355 | ** string appear at the end of the argument list. |
| 356 | ** |
| 357 | ** All of the usual printf formatting options apply. In addition, there |
| 358 | ** is a "%q" option. %q works like %s in that it substitutes a null-terminated |
drh | 66b89c8 | 2000-11-28 20:47:17 +0000 | [diff] [blame] | 359 | ** string from the argument list. But %q also doubles every '\'' character. |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 360 | ** %q is designed for use inside a string literal. By doubling each '\'' |
drh | 66b89c8 | 2000-11-28 20:47:17 +0000 | [diff] [blame] | 361 | ** character it escapes that character and allows it to be inserted into |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 362 | ** the string. |
| 363 | ** |
| 364 | ** For example, so some string variable contains text as follows: |
| 365 | ** |
| 366 | ** char *zText = "It's a happy day!"; |
| 367 | ** |
| 368 | ** We can use this text in an SQL statement as follows: |
| 369 | ** |
| 370 | ** sqlite_exec_printf(db, "INSERT INTO table VALUES('%q')", |
| 371 | ** callback1, 0, 0, zText); |
| 372 | ** |
| 373 | ** Because the %q format string is used, the '\'' character in zText |
| 374 | ** is escaped and the SQL generated is as follows: |
| 375 | ** |
| 376 | ** INSERT INTO table1 VALUES('It''s a happy day!') |
| 377 | ** |
| 378 | ** This is correct. Had we used %s instead of %q, the generated SQL |
| 379 | ** would have looked like this: |
| 380 | ** |
| 381 | ** INSERT INTO table1 VALUES('It's a happy day!'); |
| 382 | ** |
| 383 | ** This second example is an SQL syntax error. As a general rule you |
| 384 | ** should always use %q instead of %s when inserting text into a string |
| 385 | ** literal. |
| 386 | */ |
| 387 | int sqlite_exec_printf( |
| 388 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 389 | const char *sqlFormat, /* printf-style format string for the SQL */ |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 390 | sqlite_callback, /* Callback function */ |
| 391 | void *, /* 1st argument to callback function */ |
| 392 | char **errmsg, /* Error msg written here */ |
| 393 | ... /* Arguments to the format string. */ |
| 394 | ); |
| 395 | int sqlite_exec_vprintf( |
| 396 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 397 | const char *sqlFormat, /* printf-style format string for the SQL */ |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 398 | sqlite_callback, /* Callback function */ |
| 399 | void *, /* 1st argument to callback function */ |
| 400 | char **errmsg, /* Error msg written here */ |
| 401 | va_list ap /* Arguments to the format string. */ |
| 402 | ); |
| 403 | int sqlite_get_table_printf( |
| 404 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 405 | const char *sqlFormat, /* printf-style format string for the SQL */ |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 406 | char ***resultp, /* Result written to a char *[] that this points to */ |
| 407 | int *nrow, /* Number of result rows written here */ |
| 408 | int *ncolumn, /* Number of result columns written here */ |
| 409 | char **errmsg, /* Error msg written here */ |
| 410 | ... /* Arguments to the format string */ |
| 411 | ); |
| 412 | int sqlite_get_table_vprintf( |
| 413 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 414 | const char *sqlFormat, /* printf-style format string for the SQL */ |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 415 | char ***resultp, /* Result written to a char *[] that this points to */ |
| 416 | int *nrow, /* Number of result rows written here */ |
| 417 | int *ncolumn, /* Number of result columns written here */ |
| 418 | char **errmsg, /* Error msg written here */ |
| 419 | va_list ap /* Arguments to the format string */ |
| 420 | ); |
drh | 62160e7 | 2002-07-30 17:20:40 +0000 | [diff] [blame] | 421 | char *sqlite_mprintf(const char*,...); |
drh | d36a483 | 2003-06-06 15:44:00 +0000 | [diff] [blame] | 422 | char *sqlite_vmprintf(const char*, va_list); |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 423 | |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 424 | /* |
drh | 5191b7e | 2002-03-08 02:12:00 +0000 | [diff] [blame] | 425 | ** Windows systems should call this routine to free memory that |
| 426 | ** is returned in the in the errmsg parameter of sqlite_open() when |
| 427 | ** SQLite is a DLL. For some reason, it does not work to call free() |
| 428 | ** directly. |
| 429 | */ |
| 430 | void sqlite_freemem(void *p); |
| 431 | |
| 432 | /* |
| 433 | ** Windows systems need functions to call to return the sqlite_version |
| 434 | ** and sqlite_encoding strings. |
| 435 | */ |
| 436 | const char *sqlite_libversion(void); |
| 437 | const char *sqlite_libencoding(void); |
| 438 | |
| 439 | /* |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 440 | ** A pointer to the following structure is used to communicate with |
| 441 | ** the implementations of user-defined functions. |
| 442 | */ |
| 443 | typedef struct sqlite_func sqlite_func; |
| 444 | |
| 445 | /* |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 446 | ** Use the following routines to create new user-defined functions. See |
| 447 | ** the documentation for details. |
| 448 | */ |
| 449 | int sqlite_create_function( |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 450 | sqlite*, /* Database where the new function is registered */ |
| 451 | const char *zName, /* Name of the new function */ |
| 452 | int nArg, /* Number of arguments. -1 means any number */ |
| 453 | void (*xFunc)(sqlite_func*,int,const char**), /* C code to implement */ |
| 454 | void *pUserData /* Available via the sqlite_user_data() call */ |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 455 | ); |
| 456 | int sqlite_create_aggregate( |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 457 | sqlite*, /* Database where the new function is registered */ |
| 458 | const char *zName, /* Name of the function */ |
| 459 | int nArg, /* Number of arguments */ |
| 460 | void (*xStep)(sqlite_func*,int,const char**), /* Called for each row */ |
| 461 | void (*xFinalize)(sqlite_func*), /* Called once to get final result */ |
| 462 | void *pUserData /* Available via the sqlite_user_data() call */ |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 463 | ); |
| 464 | |
| 465 | /* |
drh | c9b84a1 | 2002-06-20 11:36:48 +0000 | [diff] [blame] | 466 | ** Use the following routine to define the datatype returned by a |
| 467 | ** user-defined function. The second argument can be one of the |
| 468 | ** constants SQLITE_NUMERIC, SQLITE_TEXT, or SQLITE_ARGS or it |
drh | 268380c | 2004-02-25 13:47:31 +0000 | [diff] [blame] | 469 | ** can be an integer greater than or equal to zero. When the datatype |
| 470 | ** parameter is non-negative, the type of the result will be the |
| 471 | ** same as the datatype-th argument. If datatype==SQLITE_NUMERIC |
| 472 | ** then the result is always numeric. If datatype==SQLITE_TEXT then |
| 473 | ** the result is always text. If datatype==SQLITE_ARGS then the result |
| 474 | ** is numeric if any argument is numeric and is text otherwise. |
drh | c9b84a1 | 2002-06-20 11:36:48 +0000 | [diff] [blame] | 475 | */ |
| 476 | int sqlite_function_type( |
| 477 | sqlite *db, /* The database there the function is registered */ |
| 478 | const char *zName, /* Name of the function */ |
| 479 | int datatype /* The datatype for this function */ |
| 480 | ); |
| 481 | #define SQLITE_NUMERIC (-1) |
| 482 | #define SQLITE_TEXT (-2) |
| 483 | #define SQLITE_ARGS (-3) |
| 484 | |
| 485 | /* |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 486 | ** The user function implementations call one of the following four routines |
| 487 | ** in order to return their results. The first parameter to each of these |
drh | dd5baa9 | 2002-02-27 19:50:59 +0000 | [diff] [blame] | 488 | ** routines is a copy of the first argument to xFunc() or xFinialize(). |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 489 | ** The second parameter to these routines is the result to be returned. |
| 490 | ** A NULL can be passed as the second parameter to sqlite_set_result_string() |
| 491 | ** in order to return a NULL result. |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 492 | ** |
| 493 | ** The 3rd argument to _string and _error is the number of characters to |
| 494 | ** take from the string. If this argument is negative, then all characters |
| 495 | ** up to and including the first '\000' are used. |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 496 | ** |
| 497 | ** The sqlite_set_result_string() function allocates a buffer to hold the |
| 498 | ** result and returns a pointer to this buffer. The calling routine |
| 499 | ** (that is, the implmentation of a user function) can alter the content |
| 500 | ** of this buffer if desired. |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 501 | */ |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 502 | char *sqlite_set_result_string(sqlite_func*,const char*,int); |
| 503 | void sqlite_set_result_int(sqlite_func*,int); |
| 504 | void sqlite_set_result_double(sqlite_func*,double); |
| 505 | void sqlite_set_result_error(sqlite_func*,const char*,int); |
| 506 | |
| 507 | /* |
| 508 | ** The pUserData parameter to the sqlite_create_function() and |
| 509 | ** sqlite_create_aggregate() routines used to register user functions |
| 510 | ** is available to the implementation of the function using this |
| 511 | ** call. |
| 512 | */ |
| 513 | void *sqlite_user_data(sqlite_func*); |
| 514 | |
| 515 | /* |
drh | dd5baa9 | 2002-02-27 19:50:59 +0000 | [diff] [blame] | 516 | ** Aggregate functions use the following routine to allocate |
| 517 | ** a structure for storing their state. The first time this routine |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 518 | ** is called for a particular aggregate, a new structure of size nBytes |
| 519 | ** is allocated, zeroed, and returned. On subsequent calls (for the |
| 520 | ** same aggregate instance) the same buffer is returned. The implementation |
| 521 | ** of the aggregate can use the returned buffer to accumulate data. |
| 522 | ** |
| 523 | ** The buffer allocated is freed automatically be SQLite. |
| 524 | */ |
| 525 | void *sqlite_aggregate_context(sqlite_func*, int nBytes); |
| 526 | |
| 527 | /* |
drh | dd5baa9 | 2002-02-27 19:50:59 +0000 | [diff] [blame] | 528 | ** The next routine returns the number of calls to xStep for a particular |
| 529 | ** aggregate function instance. The current call to xStep counts so this |
| 530 | ** routine always returns at least 1. |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 531 | */ |
| 532 | int sqlite_aggregate_count(sqlite_func*); |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 533 | |
drh | 411995d | 2002-06-25 19:31:18 +0000 | [diff] [blame] | 534 | /* |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 535 | ** This routine registers a callback with the SQLite library. The |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 536 | ** callback is invoked (at compile-time, not at run-time) for each |
| 537 | ** attempt to access a column of a table in the database. The callback |
| 538 | ** returns SQLITE_OK if access is allowed, SQLITE_DENY if the entire |
| 539 | ** SQL statement should be aborted with an error and SQLITE_IGNORE |
| 540 | ** if the column should be treated as a NULL value. |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 541 | */ |
| 542 | int sqlite_set_authorizer( |
| 543 | sqlite*, |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 544 | int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 545 | void *pUserData |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 546 | ); |
| 547 | |
| 548 | /* |
| 549 | ** The second parameter to the access authorization function above will |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 550 | ** be one of the values below. These values signify what kind of operation |
| 551 | ** is to be authorized. The 3rd and 4th parameters to the authorization |
| 552 | ** function will be parameters or NULL depending on which of the following |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 553 | ** codes is used as the second parameter. The 5th parameter is the name |
| 554 | ** of the database ("main", "temp", etc.) if applicable. The 6th parameter |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 555 | ** is the name of the inner-most trigger or view that is responsible for |
| 556 | ** the access attempt or NULL if this access attempt is directly from |
| 557 | ** input SQL code. |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 558 | ** |
| 559 | ** Arg-3 Arg-4 |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 560 | */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 561 | #define SQLITE_COPY 0 /* Table Name File Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 562 | #define SQLITE_CREATE_INDEX 1 /* Index Name Table Name */ |
| 563 | #define SQLITE_CREATE_TABLE 2 /* Table Name NULL */ |
| 564 | #define SQLITE_CREATE_TEMP_INDEX 3 /* Index Name Table Name */ |
| 565 | #define SQLITE_CREATE_TEMP_TABLE 4 /* Table Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 566 | #define SQLITE_CREATE_TEMP_TRIGGER 5 /* Trigger Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 567 | #define SQLITE_CREATE_TEMP_VIEW 6 /* View Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 568 | #define SQLITE_CREATE_TRIGGER 7 /* Trigger Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 569 | #define SQLITE_CREATE_VIEW 8 /* View Name NULL */ |
| 570 | #define SQLITE_DELETE 9 /* Table Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 571 | #define SQLITE_DROP_INDEX 10 /* Index Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 572 | #define SQLITE_DROP_TABLE 11 /* Table Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 573 | #define SQLITE_DROP_TEMP_INDEX 12 /* Index Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 574 | #define SQLITE_DROP_TEMP_TABLE 13 /* Table Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 575 | #define SQLITE_DROP_TEMP_TRIGGER 14 /* Trigger Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 576 | #define SQLITE_DROP_TEMP_VIEW 15 /* View Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 577 | #define SQLITE_DROP_TRIGGER 16 /* Trigger Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 578 | #define SQLITE_DROP_VIEW 17 /* View Name NULL */ |
| 579 | #define SQLITE_INSERT 18 /* Table Name NULL */ |
| 580 | #define SQLITE_PRAGMA 19 /* Pragma Name 1st arg or NULL */ |
| 581 | #define SQLITE_READ 20 /* Table Name Column Name */ |
| 582 | #define SQLITE_SELECT 21 /* NULL NULL */ |
| 583 | #define SQLITE_TRANSACTION 22 /* NULL NULL */ |
| 584 | #define SQLITE_UPDATE 23 /* Table Name Column Name */ |
drh | 81e293b | 2003-06-06 19:00:42 +0000 | [diff] [blame] | 585 | #define SQLITE_ATTACH 24 /* Filename NULL */ |
| 586 | #define SQLITE_DETACH 25 /* Database Name NULL */ |
| 587 | |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 588 | |
| 589 | /* |
| 590 | ** The return value of the authorization function should be one of the |
| 591 | ** following constants: |
| 592 | */ |
| 593 | /* #define SQLITE_OK 0 // Allow access (This is actually defined above) */ |
| 594 | #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ |
| 595 | #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ |
| 596 | |
| 597 | /* |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 598 | ** Register a function that is called at every invocation of sqlite_exec() |
| 599 | ** or sqlite_compile(). This function can be used (for example) to generate |
| 600 | ** a log file of all SQL executed against a database. |
drh | 18de482 | 2003-01-16 16:28:53 +0000 | [diff] [blame] | 601 | */ |
| 602 | void *sqlite_trace(sqlite*, void(*xTrace)(void*,const char*), void*); |
| 603 | |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 604 | /*** The Callback-Free API |
| 605 | ** |
| 606 | ** The following routines implement a new way to access SQLite that does not |
| 607 | ** involve the use of callbacks. |
| 608 | ** |
| 609 | ** An sqlite_vm is an opaque object that represents a single SQL statement |
| 610 | ** that is ready to be executed. |
| 611 | */ |
| 612 | typedef struct sqlite_vm sqlite_vm; |
| 613 | |
| 614 | /* |
| 615 | ** To execute an SQLite query without the use of callbacks, you first have |
| 616 | ** to compile the SQL using this routine. The 1st parameter "db" is a pointer |
| 617 | ** to an sqlite object obtained from sqlite_open(). The 2nd parameter |
| 618 | ** "zSql" is the text of the SQL to be compiled. The remaining parameters |
| 619 | ** are all outputs. |
| 620 | ** |
| 621 | ** *pzTail is made to point to the first character past the end of the first |
| 622 | ** SQL statement in zSql. This routine only compiles the first statement |
| 623 | ** in zSql, so *pzTail is left pointing to what remains uncompiled. |
| 624 | ** |
| 625 | ** *ppVm is left pointing to a "virtual machine" that can be used to execute |
| 626 | ** the compiled statement. Or if there is an error, *ppVm may be set to NULL. |
drh | 326dce7 | 2003-01-29 14:06:07 +0000 | [diff] [blame] | 627 | ** If the input text contained no SQL (if the input is and empty string or |
| 628 | ** a comment) then *ppVm is set to NULL. |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 629 | ** |
| 630 | ** If any errors are detected during compilation, an error message is written |
| 631 | ** into space obtained from malloc() and *pzErrMsg is made to point to that |
| 632 | ** error message. The calling routine is responsible for freeing the text |
| 633 | ** of this message when it has finished with it. Use sqlite_freemem() to |
| 634 | ** free the message. pzErrMsg may be NULL in which case no error message |
| 635 | ** will be generated. |
| 636 | ** |
| 637 | ** On success, SQLITE_OK is returned. Otherwise and error code is returned. |
| 638 | */ |
| 639 | int sqlite_compile( |
| 640 | sqlite *db, /* The open database */ |
| 641 | const char *zSql, /* SQL statement to be compiled */ |
| 642 | const char **pzTail, /* OUT: uncompiled tail of zSql */ |
| 643 | sqlite_vm **ppVm, /* OUT: the virtual machine to execute zSql */ |
| 644 | char **pzErrmsg /* OUT: Error message. */ |
| 645 | ); |
| 646 | |
| 647 | /* |
| 648 | ** After an SQL statement has been compiled, it is handed to this routine |
| 649 | ** to be executed. This routine executes the statement as far as it can |
| 650 | ** go then returns. The return value will be one of SQLITE_DONE, |
| 651 | ** SQLITE_ERROR, SQLITE_BUSY, SQLITE_ROW, or SQLITE_MISUSE. |
| 652 | ** |
| 653 | ** SQLITE_DONE means that the execute of the SQL statement is complete |
| 654 | ** an no errors have occurred. sqlite_step() should not be called again |
| 655 | ** for the same virtual machine. *pN is set to the number of columns in |
| 656 | ** the result set and *pazColName is set to an array of strings that |
| 657 | ** describe the column names and datatypes. The name of the i-th column |
| 658 | ** is (*pazColName)[i] and the datatype of the i-th column is |
| 659 | ** (*pazColName)[i+*pN]. *pazValue is set to NULL. |
| 660 | ** |
| 661 | ** SQLITE_ERROR means that the virtual machine encountered a run-time |
| 662 | ** error. sqlite_step() should not be called again for the same |
| 663 | ** virtual machine. *pN is set to 0 and *pazColName and *pazValue are set |
| 664 | ** to NULL. Use sqlite_finalize() to obtain the specific error code |
| 665 | ** and the error message text for the error. |
| 666 | ** |
| 667 | ** SQLITE_BUSY means that an attempt to open the database failed because |
| 668 | ** another thread or process is holding a lock. The calling routine |
| 669 | ** can try again to open the database by calling sqlite_step() again. |
| 670 | ** The return code will only be SQLITE_BUSY if no busy handler is registered |
| 671 | ** using the sqlite_busy_handler() or sqlite_busy_timeout() routines. If |
| 672 | ** a busy handler callback has been registered but returns 0, then this |
| 673 | ** routine will return SQLITE_ERROR and sqltie_finalize() will return |
| 674 | ** SQLITE_BUSY when it is called. |
| 675 | ** |
| 676 | ** SQLITE_ROW means that a single row of the result is now available. |
| 677 | ** The data is contained in *pazValue. The value of the i-th column is |
| 678 | ** (*azValue)[i]. *pN and *pazColName are set as described in SQLITE_DONE. |
| 679 | ** Invoke sqlite_step() again to advance to the next row. |
| 680 | ** |
| 681 | ** SQLITE_MISUSE is returned if sqlite_step() is called incorrectly. |
| 682 | ** For example, if you call sqlite_step() after the virtual machine |
| 683 | ** has halted (after a prior call to sqlite_step() has returned SQLITE_DONE) |
| 684 | ** or if you call sqlite_step() with an incorrectly initialized virtual |
| 685 | ** machine or a virtual machine that has been deleted or that is associated |
| 686 | ** with an sqlite structure that has been closed. |
| 687 | */ |
| 688 | int sqlite_step( |
| 689 | sqlite_vm *pVm, /* The virtual machine to execute */ |
| 690 | int *pN, /* OUT: Number of columns in result */ |
| 691 | const char ***pazValue, /* OUT: Column data */ |
| 692 | const char ***pazColName /* OUT: Column names and datatypes */ |
| 693 | ); |
| 694 | |
| 695 | /* |
| 696 | ** This routine is called to delete a virtual machine after it has finished |
| 697 | ** executing. The return value is the result code. SQLITE_OK is returned |
| 698 | ** if the statement executed successfully and some other value is returned if |
| 699 | ** there was any kind of error. If an error occurred and pzErrMsg is not |
| 700 | ** NULL, then an error message is written into memory obtained from malloc() |
| 701 | ** and *pzErrMsg is made to point to that error message. The calling routine |
| 702 | ** should use sqlite_freemem() to delete this message when it has finished |
| 703 | ** with it. |
| 704 | ** |
| 705 | ** This routine can be called at any point during the execution of the |
| 706 | ** virtual machine. If the virtual machine has not completed execution |
| 707 | ** when this routine is called, that is like encountering an error or |
| 708 | ** an interrupt. (See sqlite_interrupt().) Incomplete updates may be |
| 709 | ** rolled back and transactions cancelled, depending on the circumstances, |
| 710 | ** and the result code returned will be SQLITE_ABORT. |
| 711 | */ |
| 712 | int sqlite_finalize(sqlite_vm*, char **pzErrMsg); |
| 713 | |
danielk1977 | 999af64 | 2003-07-22 09:24:43 +0000 | [diff] [blame] | 714 | /* |
| 715 | ** This routine deletes the virtual machine, writes any error message to |
| 716 | ** *pzErrMsg and returns an SQLite return code in the same way as the |
| 717 | ** sqlite_finalize() function. |
| 718 | ** |
| 719 | ** Additionally, if ppVm is not NULL, *ppVm is left pointing to a new virtual |
| 720 | ** machine loaded with the compiled version of the original query ready for |
| 721 | ** execution. |
| 722 | ** |
| 723 | ** If sqlite_reset() returns SQLITE_SCHEMA, then *ppVm is set to NULL. |
| 724 | ** |
drh | 7c972de | 2003-09-06 22:18:07 +0000 | [diff] [blame] | 725 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
drh | 5045789 | 2003-09-06 01:10:47 +0000 | [diff] [blame] | 726 | */ |
drh | 7c972de | 2003-09-06 22:18:07 +0000 | [diff] [blame] | 727 | int sqlite_reset(sqlite_vm*, char **pzErrMsg); |
drh | 5045789 | 2003-09-06 01:10:47 +0000 | [diff] [blame] | 728 | |
| 729 | /* |
drh | 7c972de | 2003-09-06 22:18:07 +0000 | [diff] [blame] | 730 | ** If the SQL that was handed to sqlite_compile contains variables that |
| 731 | ** are represeted in the SQL text by a question mark ('?'). This routine |
| 732 | ** is used to assign values to those variables. |
| 733 | ** |
| 734 | ** The first parameter is a virtual machine obtained from sqlite_compile(). |
| 735 | ** The 2nd "idx" parameter determines which variable in the SQL statement |
| 736 | ** to bind the value to. The left most '?' is 1. The 3rd parameter is |
| 737 | ** the value to assign to that variable. The 4th parameter is the number |
| 738 | ** of bytes in the value, including the terminating \000 for strings. |
| 739 | ** Finally, the 5th "copy" parameter is TRUE if SQLite should make its |
| 740 | ** own private copy of this value, or false if the space that the 3rd |
| 741 | ** parameter points to will be unchanging and can be used directly by |
| 742 | ** SQLite. |
| 743 | ** |
| 744 | ** Unbound variables are treated as having a value of NULL. To explicitly |
| 745 | ** set a variable to NULL, call this routine with the 3rd parameter as a |
| 746 | ** NULL pointer. |
| 747 | ** |
| 748 | ** If the 4th "len" parameter is -1, then strlen() is used to find the |
| 749 | ** length. |
drh | 5045789 | 2003-09-06 01:10:47 +0000 | [diff] [blame] | 750 | ** |
| 751 | ** This routine can only be called immediately after sqlite_compile() |
| 752 | ** or sqlite_reset() and before any calls to sqlite_step(). |
| 753 | ** |
danielk1977 | 999af64 | 2003-07-22 09:24:43 +0000 | [diff] [blame] | 754 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
| 755 | */ |
drh | 7c972de | 2003-09-06 22:18:07 +0000 | [diff] [blame] | 756 | int sqlite_bind(sqlite_vm*, int idx, const char *value, int len, int copy); |
danielk1977 | 999af64 | 2003-07-22 09:24:43 +0000 | [diff] [blame] | 757 | |
danielk1977 | 348bb5d | 2003-10-18 09:37:26 +0000 | [diff] [blame] | 758 | /* |
| 759 | ** This routine configures a callback function - the progress callback - that |
| 760 | ** is invoked periodically during long running calls to sqlite_exec(), |
| 761 | ** sqlite_step() and sqlite_get_table(). An example use for this API is to keep |
| 762 | ** a GUI updated during a large query. |
| 763 | ** |
| 764 | ** The progress callback is invoked once for every N virtual machine opcodes, |
| 765 | ** where N is the second argument to this function. The progress callback |
| 766 | ** itself is identified by the third argument to this function. The fourth |
| 767 | ** argument to this function is a void pointer passed to the progress callback |
| 768 | ** function each time it is invoked. |
| 769 | ** |
| 770 | ** If a call to sqlite_exec(), sqlite_step() or sqlite_get_table() results |
| 771 | ** in less than N opcodes being executed, then the progress callback is not |
| 772 | ** invoked. |
| 773 | ** |
| 774 | ** Calling this routine overwrites any previously installed progress callback. |
| 775 | ** To remove the progress callback altogether, pass NULL as the third |
| 776 | ** argument to this function. |
| 777 | ** |
| 778 | ** If the progress callback returns a result other than 0, then the current |
| 779 | ** query is immediately terminated and any database changes rolled back. If the |
| 780 | ** query was part of a larger transaction, then the transaction is not rolled |
| 781 | ** back and remains active. The sqlite_exec() call returns SQLITE_ABORT. |
drh | aa940ea | 2004-01-15 02:44:03 +0000 | [diff] [blame] | 782 | ** |
| 783 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
danielk1977 | 348bb5d | 2003-10-18 09:37:26 +0000 | [diff] [blame] | 784 | */ |
| 785 | void sqlite_progress_handler(sqlite*, int, int(*)(void*), void*); |
| 786 | |
drh | aa940ea | 2004-01-15 02:44:03 +0000 | [diff] [blame] | 787 | /* |
| 788 | ** Register a callback function to be invoked whenever a new transaction |
| 789 | ** is committed. The pArg argument is passed through to the callback. |
| 790 | ** callback. If the callback function returns non-zero, then the commit |
| 791 | ** is converted into a rollback. |
| 792 | ** |
| 793 | ** If another function was previously registered, its pArg value is returned. |
| 794 | ** Otherwise NULL is returned. |
| 795 | ** |
| 796 | ** Registering a NULL function disables the callback. |
| 797 | ** |
| 798 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
| 799 | */ |
| 800 | void *sqlite_commit_hook(sqlite*, int(*)(void*), void*); |
| 801 | |
drh | 22fbcb8 | 2004-02-01 01:22:50 +0000 | [diff] [blame] | 802 | /* |
| 803 | ** Open an encrypted SQLite database. If pKey==0 or nKey==0, this routine |
| 804 | ** is the same as sqlite_open(). |
| 805 | ** |
| 806 | ** The code to implement this API is not available in the public release |
| 807 | ** of SQLite. |
| 808 | */ |
| 809 | sqlite *sqlite_open_encrypted( |
| 810 | const char *zFilename, /* Name of the encrypted database */ |
| 811 | const void *pKey, /* Pointer to the key */ |
| 812 | int nKey, /* Number of bytes in the key */ |
drh | e384a4e | 2004-02-12 20:49:36 +0000 | [diff] [blame] | 813 | int *pErrcode, /* Write error code here */ |
drh | 22fbcb8 | 2004-02-01 01:22:50 +0000 | [diff] [blame] | 814 | char **pzErrmsg /* Write error message here */ |
| 815 | ); |
| 816 | |
| 817 | /* |
| 818 | ** Change the key on an open database. If the current database is not |
| 819 | ** encrypted, this routine will encrypt it. If pNew==0 or nNew==0, the |
| 820 | ** database is decrypted. |
| 821 | ** |
| 822 | ** The code to implement this API is not available in the public release |
| 823 | ** of SQLite. |
| 824 | */ |
| 825 | int sqlite_rekey( |
| 826 | sqlite *db, /* Database to be rekeyed */ |
| 827 | const void *pKey, int nKey /* The new key */ |
| 828 | ); |
| 829 | |
drh | 6ff15d0 | 2004-03-14 22:12:34 +0000 | [diff] [blame] | 830 | /* |
| 831 | ** Encode a binary buffer "in" of size n bytes so that it contains |
| 832 | ** no instances of characters '\'' or '\000'. The output is |
| 833 | ** null-terminated and can be used as a string value in an INSERT |
| 834 | ** or UPDATE statement. Use sqlite_decode_binary() to convert the |
| 835 | ** string back into its original binary. |
| 836 | ** |
| 837 | ** The result is written into a preallocated output buffer "out". |
| 838 | ** "out" must be able to hold at least 2 +(257*n)/254 bytes. |
| 839 | ** In other words, the output will be expanded by as much as 3 |
| 840 | ** bytes for every 254 bytes of input plus 2 bytes of fixed overhead. |
| 841 | ** (This is approximately 2 + 1.0118*n or about a 1.2% size increase.) |
| 842 | ** |
| 843 | ** The return value is the number of characters in the encoded |
| 844 | ** string, excluding the "\000" terminator. |
| 845 | ** |
| 846 | ** If out==NULL then no output is generated but the routine still returns |
| 847 | ** the number of characters that would have been generated if out had |
| 848 | ** not been NULL. |
| 849 | */ |
| 850 | int sqlite_encode_binary(const unsigned char *in, int n, unsigned char *out); |
| 851 | |
| 852 | /* |
| 853 | ** Decode the string "in" into binary data and write it into "out". |
| 854 | ** This routine reverses the encoding created by sqlite_encode_binary(). |
| 855 | ** The output will always be a few bytes less than the input. The number |
| 856 | ** of bytes of output is returned. If the input is not a well-formed |
| 857 | ** encoding, -1 is returned. |
| 858 | ** |
| 859 | ** The "in" and "out" parameters may point to the same buffer in order |
| 860 | ** to decode a string in place. |
| 861 | */ |
| 862 | int sqlite_decode_binary(const unsigned char *in, unsigned char *out); |
| 863 | |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 864 | #if 0 |
| 865 | |
| 866 | /* |
| 867 | ** Below this point are the new sqlite3 APIs. At present these are |
| 868 | ** implemented in terms of the sqlite2 API above. This is to get the TCL |
| 869 | ** interface and other testing infrastructure in place for when |
| 870 | ** functionality starts getting added. |
| 871 | */ |
| 872 | |
| 873 | typedef struct sqlite sqlite3; |
| 874 | |
| 875 | int sqlite3_open(const char*, sqlite3**, const char**); |
| 876 | int sqlite3_open16(const void*, sqlite3**, const char**); |
| 877 | int sqlite3_close(sqlite3*); |
| 878 | |
| 879 | const char *sqlite3_errmsg(sqlite3*); |
| 880 | const void *sqlite3_errmsg16(sqlite3*); |
| 881 | int sqlite3_errcode(sqlite3*); |
| 882 | |
| 883 | typedef struct sqlite3_vm sqlite3_stmt; |
| 884 | |
| 885 | int sqlite3_prepare(sqlite3*, const char*, sqlite3_stmt**, const char**); |
| 886 | int sqlite3_prepare16(sqlite3*, const void*, sqlite3_stmt**, const void**); |
| 887 | int sqlite3_finalize(sqlite3_stmt*); |
| 888 | int sqlite3_reset(sqlite3_stmt*); |
| 889 | |
| 890 | int sqlite3_bind_int32(sqlite3_stmt*, int iParm, int iValue); |
| 891 | int sqlite3_bind_int64(sqlite3_stmt*, int iParm, long long int iValue); |
| 892 | int sqlite3_bind_double(sqlite3_stmt*, int iParm, double iValue); |
| 893 | int sqlite3_bind_null(sqlite3_stmt*, int iParm); |
| 894 | int sqlite3_bind_text(sqlite3_stmt*, int i, const char*, int n, int eCopy); |
| 895 | int sqlite3_bind_text16(sqlite3_stmt*, int i, const void*, int, int eCopy); |
| 896 | int sqlite3_bind_blob(sqlite3_stmt*, int i, const void*, int n, int eCopy); |
| 897 | |
| 898 | int sqlite3_step(sqlite3_stmt*); |
| 899 | |
| 900 | #define SQLITE3_INTEGER 1 |
| 901 | #define SQLITE3_FLOAT 2 |
| 902 | #define SQLITE3_TEXT 3 |
| 903 | #define SQLITE3_BLOB 4 |
| 904 | #define SQLITE3_NULL 5 |
| 905 | |
| 906 | int sqlite3_column_count(sqlite3_stmt*); |
| 907 | int sqlite3_column_type(sqlite3_stmt*,int); |
| 908 | const char *sqlite3_column_decltype(sqlite3_stmt*,int); |
| 909 | const void *sqlite3_column_decltype16(sqlite3_stmt*,int); |
| 910 | const char *sqlite3_column_name(sqlite3_stmt*,int); |
| 911 | const void *sqlite3_column_name16(sqlite3_stmt*,int); |
| 912 | const unsigned char *sqlite3_column_data(sqlite3_stmt*,int); |
| 913 | const void *sqlite3_column_data16(sqlite3_stmt*,int); |
| 914 | int sqlite3_column_bytes(sqlite3_stmt*,int); |
| 915 | long long int sqlite3_column_int(sqlite3_stmt*,int); |
| 916 | double sqlite3_column_float(sqlite3_stmt*,int); |
| 917 | |
| 918 | #endif |
| 919 | |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 920 | #ifdef __cplusplus |
| 921 | } /* End of the 'extern "C"' block */ |
| 922 | #endif |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 923 | #endif |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 924 | |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 925 | |
| 926 | |