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 | 22322fd | 2004-05-25 23:35:17 +0000 | [diff] [blame^] | 15 | ** @(#) $Id: sqlite.h.in,v 1.77 2004/05/25 23:35:19 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 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 38 | extern const char sqlite3_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 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 53 | extern const char sqlite3_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 | /* |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 62 | ** A function to close the database. |
| 63 | ** |
| 64 | ** Call this function with a pointer to a structure that was previously |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 65 | ** returned from sqlite3_open() and the corresponding database will by closed. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 66 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 67 | void sqlite3_close(sqlite *); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 68 | |
| 69 | /* |
| 70 | ** The type for a callback function. |
| 71 | */ |
| 72 | typedef int (*sqlite_callback)(void*,int,char**, char**); |
| 73 | |
| 74 | /* |
| 75 | ** A function to executes one or more statements of SQL. |
| 76 | ** |
| 77 | ** If one or more of the SQL statements are queries, then |
| 78 | ** the callback function specified by the 3rd parameter is |
| 79 | ** invoked once for each row of the query result. This callback |
| 80 | ** should normally return 0. If the callback returns a non-zero |
| 81 | ** value then the query is aborted, all subsequent SQL statements |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 82 | ** are skipped and the sqlite3_exec() function returns the SQLITE_ABORT. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 83 | ** |
| 84 | ** The 4th parameter is an arbitrary pointer that is passed |
| 85 | ** to the callback function as its first parameter. |
| 86 | ** |
| 87 | ** The 2nd parameter to the callback function is the number of |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 88 | ** columns in the query result. The 3rd parameter to the callback |
| 89 | ** is an array of strings holding the values for each column. |
| 90 | ** The 4th parameter to the callback is an array of strings holding |
| 91 | ** the names of each column. |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 92 | ** |
| 93 | ** The callback function may be NULL, even for queries. A NULL |
| 94 | ** callback is not an error. It just means that no callback |
| 95 | ** will be invoked. |
| 96 | ** |
| 97 | ** If an error occurs while parsing or evaluating the SQL (but |
| 98 | ** not while executing the callback) then an appropriate error |
| 99 | ** message is written into memory obtained from malloc() and |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 100 | ** *errmsg is made to point to that message. The calling function |
| 101 | ** is responsible for freeing the memory that holds the error |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 102 | ** message. Use sqlite3_freemem() for this. If errmsg==NULL, |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 103 | ** then no error message is ever written. |
drh | b19a2bc | 2001-09-16 00:13:26 +0000 | [diff] [blame] | 104 | ** |
| 105 | ** The return value is is SQLITE_OK if there are no errors and |
| 106 | ** some other return code if there is an error. The particular |
| 107 | ** return value depends on the type of error. |
drh | 58b9576 | 2000-06-02 01:17:37 +0000 | [diff] [blame] | 108 | ** |
| 109 | ** If the query could not be executed because a database file is |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 110 | ** locked or busy, then this function returns SQLITE_BUSY. (This |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 111 | ** behavior can be modified somewhat using the sqlite3_busy_handler() |
| 112 | ** and sqlite3_busy_timeout() functions below.) |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 113 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 114 | int sqlite3_exec( |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 115 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 116 | const char *sql, /* SQL to be executed */ |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 117 | sqlite_callback, /* Callback function */ |
| 118 | void *, /* 1st argument to callback function */ |
| 119 | char **errmsg /* Error msg written here */ |
| 120 | ); |
| 121 | |
drh | 58b9576 | 2000-06-02 01:17:37 +0000 | [diff] [blame] | 122 | /* |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 123 | ** Return values for sqlite3_exec() and sqlite3_step() |
drh | 58b9576 | 2000-06-02 01:17:37 +0000 | [diff] [blame] | 124 | */ |
drh | 717e640 | 2001-09-27 03:22:32 +0000 | [diff] [blame] | 125 | #define SQLITE_OK 0 /* Successful result */ |
| 126 | #define SQLITE_ERROR 1 /* SQL error or missing database */ |
| 127 | #define SQLITE_INTERNAL 2 /* An internal logic error in SQLite */ |
| 128 | #define SQLITE_PERM 3 /* Access permission denied */ |
| 129 | #define SQLITE_ABORT 4 /* Callback routine requested an abort */ |
| 130 | #define SQLITE_BUSY 5 /* The database file is locked */ |
| 131 | #define SQLITE_LOCKED 6 /* A table in the database is locked */ |
| 132 | #define SQLITE_NOMEM 7 /* A malloc() failed */ |
| 133 | #define SQLITE_READONLY 8 /* Attempt to write a readonly database */ |
drh | 24cd67e | 2004-05-10 16:18:47 +0000 | [diff] [blame] | 134 | #define SQLITE_INTERRUPT 9 /* Operation terminated by sqlite3_interrupt()*/ |
drh | 717e640 | 2001-09-27 03:22:32 +0000 | [diff] [blame] | 135 | #define SQLITE_IOERR 10 /* Some kind of disk I/O error occurred */ |
| 136 | #define SQLITE_CORRUPT 11 /* The database disk image is malformed */ |
| 137 | #define SQLITE_NOTFOUND 12 /* (Internal Only) Table or record not found */ |
| 138 | #define SQLITE_FULL 13 /* Insertion failed because database is full */ |
| 139 | #define SQLITE_CANTOPEN 14 /* Unable to open the database file */ |
| 140 | #define SQLITE_PROTOCOL 15 /* Database lock protocol error */ |
drh | 24cd67e | 2004-05-10 16:18:47 +0000 | [diff] [blame] | 141 | #define SQLITE_EMPTY 16 /* Database is empty */ |
drh | 717e640 | 2001-09-27 03:22:32 +0000 | [diff] [blame] | 142 | #define SQLITE_SCHEMA 17 /* The database schema changed */ |
| 143 | #define SQLITE_TOOBIG 18 /* Too much data for one row of a table */ |
| 144 | #define SQLITE_CONSTRAINT 19 /* Abort due to contraint violation */ |
drh | 8aff101 | 2001-12-22 14:49:24 +0000 | [diff] [blame] | 145 | #define SQLITE_MISMATCH 20 /* Data type mismatch */ |
drh | 247be43 | 2002-05-10 05:44:55 +0000 | [diff] [blame] | 146 | #define SQLITE_MISUSE 21 /* Library used incorrectly */ |
drh | 8766c34 | 2002-11-09 00:33:15 +0000 | [diff] [blame] | 147 | #define SQLITE_NOLFS 22 /* Uses OS features not supported on host */ |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 148 | #define SQLITE_AUTH 23 /* Authorization denied */ |
drh | 1c2d841 | 2003-03-31 00:30:47 +0000 | [diff] [blame] | 149 | #define SQLITE_FORMAT 24 /* Auxiliary database format error */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 150 | #define SQLITE_RANGE 25 /* 2nd parameter to sqlite3_bind out of range */ |
drh | c602f9a | 2004-02-12 19:01:04 +0000 | [diff] [blame] | 151 | #define SQLITE_NOTADB 26 /* File opened that is not a database file */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 152 | #define SQLITE_ROW 100 /* sqlite3_step() has another row ready */ |
| 153 | #define SQLITE_DONE 101 /* sqlite3_step() has finished executing */ |
drh | 717e640 | 2001-09-27 03:22:32 +0000 | [diff] [blame] | 154 | |
drh | af9ff33 | 2002-01-16 21:00:27 +0000 | [diff] [blame] | 155 | /* |
| 156 | ** Each entry in an SQLite table has a unique integer key. (The key is |
| 157 | ** the value of the INTEGER PRIMARY KEY column if there is such a column, |
| 158 | ** otherwise the key is generated at random. The unique key is always |
| 159 | ** available as the ROWID, OID, or _ROWID_ column.) The following routine |
| 160 | ** returns the integer key of the most recent insert in the database. |
| 161 | ** |
| 162 | ** This function is similar to the mysql_insert_id() function from MySQL. |
| 163 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 164 | int sqlite3_last_insert_rowid(sqlite*); |
drh | af9ff33 | 2002-01-16 21:00:27 +0000 | [diff] [blame] | 165 | |
drh | c8d30ac | 2002-04-12 10:08:59 +0000 | [diff] [blame] | 166 | /* |
| 167 | ** This function returns the number of database rows that were changed |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 168 | ** (or inserted or deleted) by the most recent called sqlite3_exec(). |
drh | c8d30ac | 2002-04-12 10:08:59 +0000 | [diff] [blame] | 169 | ** |
| 170 | ** All changes are counted, even if they were later undone by a |
| 171 | ** ROLLBACK or ABORT. Except, changes associated with creating and |
| 172 | ** dropping tables are not counted. |
| 173 | ** |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 174 | ** If a callback invokes sqlite3_exec() recursively, then the changes |
drh | c8d30ac | 2002-04-12 10:08:59 +0000 | [diff] [blame] | 175 | ** in the inner, recursive call are counted together with the changes |
| 176 | ** in the outer call. |
| 177 | ** |
| 178 | ** SQLite implements the command "DELETE FROM table" without a WHERE clause |
| 179 | ** by dropping and recreating the table. (This is much faster than going |
| 180 | ** through and deleting individual elements form the table.) Because of |
| 181 | ** this optimization, the change count for "DELETE FROM table" will be |
| 182 | ** zero regardless of the number of elements that were originally in the |
| 183 | ** table. To get an accurate count of the number of rows deleted, use |
| 184 | ** "DELETE FROM table WHERE 1" instead. |
| 185 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 186 | int sqlite3_changes(sqlite*); |
drh | c8d30ac | 2002-04-12 10:08:59 +0000 | [diff] [blame] | 187 | |
rdc | f146a77 | 2004-02-25 22:51:06 +0000 | [diff] [blame] | 188 | /* |
| 189 | ** This function returns the number of database rows that were changed |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 190 | ** by the last INSERT, UPDATE, or DELETE statment executed by sqlite3_exec(), |
rdc | f146a77 | 2004-02-25 22:51:06 +0000 | [diff] [blame] | 191 | ** or by the last VM to run to completion. The change count is not updated |
| 192 | ** by SQL statements other than INSERT, UPDATE or DELETE. |
| 193 | ** |
| 194 | ** Changes are counted, even if they are later undone by a ROLLBACK or |
| 195 | ** ABORT. Changes associated with trigger programs that execute as a |
| 196 | ** result of the INSERT, UPDATE, or DELETE statement are not counted. |
| 197 | ** |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 198 | ** If a callback invokes sqlite3_exec() recursively, then the changes |
rdc | f146a77 | 2004-02-25 22:51:06 +0000 | [diff] [blame] | 199 | ** in the inner, recursive call are counted together with the changes |
| 200 | ** in the outer call. |
| 201 | ** |
| 202 | ** SQLite implements the command "DELETE FROM table" without a WHERE clause |
| 203 | ** by dropping and recreating the table. (This is much faster than going |
| 204 | ** through and deleting individual elements form the table.) Because of |
| 205 | ** this optimization, the change count for "DELETE FROM table" will be |
| 206 | ** zero regardless of the number of elements that were originally in the |
| 207 | ** table. To get an accurate count of the number of rows deleted, use |
| 208 | ** "DELETE FROM table WHERE 1" instead. |
| 209 | ** |
| 210 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
| 211 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 212 | int sqlite3_last_statement_changes(sqlite*); |
rdc | f146a77 | 2004-02-25 22:51:06 +0000 | [diff] [blame] | 213 | |
drh | 717e640 | 2001-09-27 03:22:32 +0000 | [diff] [blame] | 214 | /* If the parameter to this routine is one of the return value constants |
| 215 | ** defined above, then this routine returns a constant text string which |
| 216 | ** descripts (in English) the meaning of the return value. |
| 217 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 218 | const char *sqlite3_error_string(int); |
| 219 | #define sqliteErrStr sqlite3_error_string /* Legacy. Do not use in new code. */ |
drh | 4c50439 | 2000-10-16 22:06:40 +0000 | [diff] [blame] | 220 | |
| 221 | /* This function causes any pending database operation to abort and |
| 222 | ** return at its earliest opportunity. This routine is typically |
drh | 66b89c8 | 2000-11-28 20:47:17 +0000 | [diff] [blame] | 223 | ** called in response to a user action such as pressing "Cancel" |
drh | 4c50439 | 2000-10-16 22:06:40 +0000 | [diff] [blame] | 224 | ** or Ctrl-C where the user wants a long query operation to halt |
| 225 | ** immediately. |
| 226 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 227 | void sqlite3_interrupt(sqlite*); |
drh | 4c50439 | 2000-10-16 22:06:40 +0000 | [diff] [blame] | 228 | |
drh | eec553b | 2000-06-02 01:51:20 +0000 | [diff] [blame] | 229 | |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 230 | /* This function returns true if the given input string comprises |
| 231 | ** one or more complete SQL statements. |
| 232 | ** |
| 233 | ** The algorithm is simple. If the last token other than spaces |
| 234 | ** and comments is a semicolon, then return true. otherwise return |
| 235 | ** false. |
| 236 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 237 | int sqlite3_complete(const char *sql); |
drh | 7589723 | 2000-05-29 14:26:00 +0000 | [diff] [blame] | 238 | |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 239 | /* |
| 240 | ** This routine identifies a callback function that is invoked |
| 241 | ** whenever an attempt is made to open a database table that is |
| 242 | ** currently locked by another process or thread. If the busy callback |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 243 | ** is NULL, then sqlite3_exec() returns SQLITE_BUSY immediately if |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 244 | ** it finds a locked table. If the busy callback is not NULL, then |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 245 | ** sqlite3_exec() invokes the callback with three arguments. The |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 246 | ** second argument is the name of the locked table and the third |
| 247 | ** argument is the number of times the table has been busy. If the |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 248 | ** busy callback returns 0, then sqlite3_exec() immediately returns |
| 249 | ** SQLITE_BUSY. If the callback returns non-zero, then sqlite3_exec() |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 250 | ** tries to open the table again and the cycle repeats. |
| 251 | ** |
| 252 | ** The default busy callback is NULL. |
| 253 | ** |
| 254 | ** Sqlite is re-entrant, so the busy handler may start a new query. |
| 255 | ** (It is not clear why anyone would every want to do this, but it |
| 256 | ** is allowed, in theory.) But the busy handler may not close the |
| 257 | ** database. Closing the database from a busy handler will delete |
| 258 | ** data structures out from under the executing query and will |
| 259 | ** probably result in a coredump. |
| 260 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 261 | void sqlite3_busy_handler(sqlite*, int(*)(void*,const char*,int), void*); |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 262 | |
| 263 | /* |
| 264 | ** This routine sets a busy handler that sleeps for a while when a |
| 265 | ** table is locked. The handler will sleep multiple times until |
| 266 | ** at least "ms" milleseconds of sleeping have been done. After |
| 267 | ** "ms" milleseconds of sleeping, the handler returns 0 which |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 268 | ** causes sqlite3_exec() to return SQLITE_BUSY. |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 269 | ** |
| 270 | ** Calling this routine with an argument less than or equal to zero |
| 271 | ** turns off all busy handlers. |
| 272 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 273 | void sqlite3_busy_timeout(sqlite*, int ms); |
drh | 2dfbbca | 2000-07-28 14:32:48 +0000 | [diff] [blame] | 274 | |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 275 | /* |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 276 | ** This next routine is really just a wrapper around sqlite3_exec(). |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 277 | ** Instead of invoking a user-supplied callback for each row of the |
| 278 | ** result, this routine remembers each row of the result in memory |
| 279 | ** obtained from malloc(), then returns all of the result after the |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 280 | ** query has finished. |
| 281 | ** |
| 282 | ** As an example, suppose the query result where this table: |
| 283 | ** |
| 284 | ** Name | Age |
| 285 | ** ----------------------- |
| 286 | ** Alice | 43 |
| 287 | ** Bob | 28 |
| 288 | ** Cindy | 21 |
| 289 | ** |
| 290 | ** If the 3rd argument were &azResult then after the function returns |
drh | 98699b5 | 2000-10-09 12:57:00 +0000 | [diff] [blame] | 291 | ** azResult will contain the following data: |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 292 | ** |
| 293 | ** azResult[0] = "Name"; |
| 294 | ** azResult[1] = "Age"; |
| 295 | ** azResult[2] = "Alice"; |
| 296 | ** azResult[3] = "43"; |
| 297 | ** azResult[4] = "Bob"; |
| 298 | ** azResult[5] = "28"; |
| 299 | ** azResult[6] = "Cindy"; |
| 300 | ** azResult[7] = "21"; |
| 301 | ** |
| 302 | ** Notice that there is an extra row of data containing the column |
| 303 | ** headers. But the *nrow return value is still 3. *ncolumn is |
| 304 | ** set to 2. In general, the number of values inserted into azResult |
| 305 | ** will be ((*nrow) + 1)*(*ncolumn). |
| 306 | ** |
| 307 | ** After the calling function has finished using the result, it should |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 308 | ** pass the result data pointer to sqlite3_free_table() in order to |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 309 | ** release the memory that was malloc-ed. Because of the way the |
| 310 | ** malloc() happens, the calling function must not try to call |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 311 | ** malloc() directly. Only sqlite3_free_table() is able to release |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 312 | ** the memory properly and safely. |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 313 | ** |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 314 | ** The return value of this routine is the same as from sqlite3_exec(). |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 315 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 316 | int sqlite3_get_table( |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 317 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 318 | const char *sql, /* SQL to be executed */ |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 319 | char ***resultp, /* Result written to a char *[] that this points to */ |
| 320 | int *nrow, /* Number of result rows written here */ |
| 321 | int *ncolumn, /* Number of result columns written here */ |
| 322 | char **errmsg /* Error msg written here */ |
| 323 | ); |
| 324 | |
| 325 | /* |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 326 | ** Call this routine to free the memory that sqlite3_get_table() allocated. |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 327 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 328 | void sqlite3_free_table(char **result); |
drh | e371033 | 2000-09-29 13:30:53 +0000 | [diff] [blame] | 329 | |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 330 | /* |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 331 | ** The following routines are wrappers around sqlite3_exec() and |
| 332 | ** sqlite3_get_table(). The only difference between the routines that |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 333 | ** follow and the originals is that the second argument to the |
| 334 | ** routines that follow is really a printf()-style format |
| 335 | ** string describing the SQL to be executed. Arguments to the format |
| 336 | ** string appear at the end of the argument list. |
| 337 | ** |
| 338 | ** All of the usual printf formatting options apply. In addition, there |
| 339 | ** 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] | 340 | ** string from the argument list. But %q also doubles every '\'' character. |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 341 | ** %q is designed for use inside a string literal. By doubling each '\'' |
drh | 66b89c8 | 2000-11-28 20:47:17 +0000 | [diff] [blame] | 342 | ** character it escapes that character and allows it to be inserted into |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 343 | ** the string. |
| 344 | ** |
| 345 | ** For example, so some string variable contains text as follows: |
| 346 | ** |
| 347 | ** char *zText = "It's a happy day!"; |
| 348 | ** |
| 349 | ** We can use this text in an SQL statement as follows: |
| 350 | ** |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 351 | ** sqlite3_exec_printf(db, "INSERT INTO table VALUES('%q')", |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 352 | ** callback1, 0, 0, zText); |
| 353 | ** |
| 354 | ** Because the %q format string is used, the '\'' character in zText |
| 355 | ** is escaped and the SQL generated is as follows: |
| 356 | ** |
| 357 | ** INSERT INTO table1 VALUES('It''s a happy day!') |
| 358 | ** |
| 359 | ** This is correct. Had we used %s instead of %q, the generated SQL |
| 360 | ** would have looked like this: |
| 361 | ** |
| 362 | ** INSERT INTO table1 VALUES('It's a happy day!'); |
| 363 | ** |
| 364 | ** This second example is an SQL syntax error. As a general rule you |
| 365 | ** should always use %q instead of %s when inserting text into a string |
| 366 | ** literal. |
| 367 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 368 | int sqlite3_exec_printf( |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 369 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 370 | const char *sqlFormat, /* printf-style format string for the SQL */ |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 371 | sqlite_callback, /* Callback function */ |
| 372 | void *, /* 1st argument to callback function */ |
| 373 | char **errmsg, /* Error msg written here */ |
| 374 | ... /* Arguments to the format string. */ |
| 375 | ); |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 376 | int sqlite3_exec_vprintf( |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 377 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 378 | const char *sqlFormat, /* printf-style format string for the SQL */ |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 379 | sqlite_callback, /* Callback function */ |
| 380 | void *, /* 1st argument to callback function */ |
| 381 | char **errmsg, /* Error msg written here */ |
| 382 | va_list ap /* Arguments to the format string. */ |
| 383 | ); |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 384 | int sqlite3_get_table_printf( |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 385 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 386 | const char *sqlFormat, /* printf-style format string for the SQL */ |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 387 | char ***resultp, /* Result written to a char *[] that this points to */ |
| 388 | int *nrow, /* Number of result rows written here */ |
| 389 | int *ncolumn, /* Number of result columns written here */ |
| 390 | char **errmsg, /* Error msg written here */ |
| 391 | ... /* Arguments to the format string */ |
| 392 | ); |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 393 | int sqlite3_get_table_vprintf( |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 394 | sqlite*, /* An open database */ |
drh | 9f71c2e | 2001-11-03 23:57:09 +0000 | [diff] [blame] | 395 | const char *sqlFormat, /* printf-style format string for the SQL */ |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 396 | char ***resultp, /* Result written to a char *[] that this points to */ |
| 397 | int *nrow, /* Number of result rows written here */ |
| 398 | int *ncolumn, /* Number of result columns written here */ |
| 399 | char **errmsg, /* Error msg written here */ |
| 400 | va_list ap /* Arguments to the format string */ |
| 401 | ); |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 402 | char *sqlite3_mprintf(const char*,...); |
| 403 | char *sqlite3_vmprintf(const char*, va_list); |
drh | a18c568 | 2000-10-08 22:20:57 +0000 | [diff] [blame] | 404 | |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 405 | /* |
drh | 5191b7e | 2002-03-08 02:12:00 +0000 | [diff] [blame] | 406 | ** Windows systems should call this routine to free memory that |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 407 | ** is returned in the in the errmsg parameter of sqlite3_open() when |
drh | 5191b7e | 2002-03-08 02:12:00 +0000 | [diff] [blame] | 408 | ** SQLite is a DLL. For some reason, it does not work to call free() |
| 409 | ** directly. |
| 410 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 411 | void sqlite3_freemem(void *p); |
drh | 5191b7e | 2002-03-08 02:12:00 +0000 | [diff] [blame] | 412 | |
| 413 | /* |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 414 | ** Windows systems need functions to call to return the sqlite3_version |
| 415 | ** and sqlite3_encoding strings. |
drh | 5191b7e | 2002-03-08 02:12:00 +0000 | [diff] [blame] | 416 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 417 | const char *sqlite3_libversion(void); |
| 418 | const char *sqlite3_libencoding(void); |
drh | 5191b7e | 2002-03-08 02:12:00 +0000 | [diff] [blame] | 419 | |
| 420 | /* |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 421 | ** A pointer to the following structure is used to communicate with |
| 422 | ** the implementations of user-defined functions. |
| 423 | */ |
danielk1977 | 0ae8b83 | 2004-05-25 12:05:56 +0000 | [diff] [blame] | 424 | typedef struct sqlite3_context sqlite3_context; |
danielk1977 | 51ad0ec | 2004-05-24 12:39:02 +0000 | [diff] [blame] | 425 | typedef struct Mem sqlite3_value; |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 426 | |
danielk1977 | 0ae8b83 | 2004-05-25 12:05:56 +0000 | [diff] [blame] | 427 | |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 428 | /* |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 429 | ** Use the following routines to create new user-defined functions. See |
| 430 | ** the documentation for details. |
| 431 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 432 | int sqlite3_create_function( |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 433 | sqlite*, /* Database where the new function is registered */ |
| 434 | const char *zName, /* Name of the new function */ |
| 435 | int nArg, /* Number of arguments. -1 means any number */ |
danielk1977 | 0ae8b83 | 2004-05-25 12:05:56 +0000 | [diff] [blame] | 436 | void (*xFunc)(sqlite3_context*,int,sqlite3_value **), /* C code to implement */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 437 | void *pUserData /* Available via the sqlite3_user_data() call */ |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 438 | ); |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 439 | int sqlite3_create_aggregate( |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 440 | sqlite*, /* Database where the new function is registered */ |
| 441 | const char *zName, /* Name of the function */ |
| 442 | int nArg, /* Number of arguments */ |
danielk1977 | 0ae8b83 | 2004-05-25 12:05:56 +0000 | [diff] [blame] | 443 | void (*xStep)(sqlite3_context*,int,sqlite3_value**), /* Called for each row */ |
| 444 | void (*xFinalize)(sqlite3_context*), /* Called once to get final result */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 445 | void *pUserData /* Available via the sqlite3_user_data() call */ |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 446 | ); |
| 447 | |
| 448 | /* |
drh | c9b84a1 | 2002-06-20 11:36:48 +0000 | [diff] [blame] | 449 | ** Use the following routine to define the datatype returned by a |
| 450 | ** user-defined function. The second argument can be one of the |
| 451 | ** constants SQLITE_NUMERIC, SQLITE_TEXT, or SQLITE_ARGS or it |
drh | 268380c | 2004-02-25 13:47:31 +0000 | [diff] [blame] | 452 | ** can be an integer greater than or equal to zero. When the datatype |
| 453 | ** parameter is non-negative, the type of the result will be the |
| 454 | ** same as the datatype-th argument. If datatype==SQLITE_NUMERIC |
| 455 | ** then the result is always numeric. If datatype==SQLITE_TEXT then |
| 456 | ** the result is always text. If datatype==SQLITE_ARGS then the result |
| 457 | ** is numeric if any argument is numeric and is text otherwise. |
drh | c9b84a1 | 2002-06-20 11:36:48 +0000 | [diff] [blame] | 458 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 459 | int sqlite3_function_type( |
drh | c9b84a1 | 2002-06-20 11:36:48 +0000 | [diff] [blame] | 460 | sqlite *db, /* The database there the function is registered */ |
| 461 | const char *zName, /* Name of the function */ |
| 462 | int datatype /* The datatype for this function */ |
| 463 | ); |
| 464 | #define SQLITE_NUMERIC (-1) |
| 465 | #define SQLITE_TEXT (-2) |
| 466 | #define SQLITE_ARGS (-3) |
| 467 | |
| 468 | /* |
drh | dd5baa9 | 2002-02-27 19:50:59 +0000 | [diff] [blame] | 469 | ** The next routine returns the number of calls to xStep for a particular |
| 470 | ** aggregate function instance. The current call to xStep counts so this |
| 471 | ** routine always returns at least 1. |
drh | 1350b03 | 2002-02-27 19:00:20 +0000 | [diff] [blame] | 472 | */ |
danielk1977 | 0ae8b83 | 2004-05-25 12:05:56 +0000 | [diff] [blame] | 473 | int sqlite3_aggregate_count(sqlite3_context*); |
drh | 8e0a2f9 | 2002-02-23 23:45:45 +0000 | [diff] [blame] | 474 | |
drh | 411995d | 2002-06-25 19:31:18 +0000 | [diff] [blame] | 475 | /* |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 476 | ** This routine registers a callback with the SQLite library. The |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 477 | ** callback is invoked (at compile-time, not at run-time) for each |
| 478 | ** attempt to access a column of a table in the database. The callback |
| 479 | ** returns SQLITE_OK if access is allowed, SQLITE_DENY if the entire |
| 480 | ** SQL statement should be aborted with an error and SQLITE_IGNORE |
| 481 | ** if the column should be treated as a NULL value. |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 482 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 483 | int sqlite3_set_authorizer( |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 484 | sqlite*, |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 485 | int (*xAuth)(void*,int,const char*,const char*,const char*,const char*), |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 486 | void *pUserData |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 487 | ); |
| 488 | |
| 489 | /* |
| 490 | ** The second parameter to the access authorization function above will |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 491 | ** be one of the values below. These values signify what kind of operation |
| 492 | ** is to be authorized. The 3rd and 4th parameters to the authorization |
| 493 | ** function will be parameters or NULL depending on which of the following |
drh | e22a334 | 2003-04-22 20:30:37 +0000 | [diff] [blame] | 494 | ** codes is used as the second parameter. The 5th parameter is the name |
| 495 | ** of the database ("main", "temp", etc.) if applicable. The 6th parameter |
drh | 5cf590c | 2003-04-24 01:45:04 +0000 | [diff] [blame] | 496 | ** is the name of the inner-most trigger or view that is responsible for |
| 497 | ** the access attempt or NULL if this access attempt is directly from |
| 498 | ** input SQL code. |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 499 | ** |
| 500 | ** Arg-3 Arg-4 |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 501 | */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 502 | #define SQLITE_COPY 0 /* Table Name File Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 503 | #define SQLITE_CREATE_INDEX 1 /* Index Name Table Name */ |
| 504 | #define SQLITE_CREATE_TABLE 2 /* Table Name NULL */ |
| 505 | #define SQLITE_CREATE_TEMP_INDEX 3 /* Index Name Table Name */ |
| 506 | #define SQLITE_CREATE_TEMP_TABLE 4 /* Table Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 507 | #define SQLITE_CREATE_TEMP_TRIGGER 5 /* Trigger Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 508 | #define SQLITE_CREATE_TEMP_VIEW 6 /* View Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 509 | #define SQLITE_CREATE_TRIGGER 7 /* Trigger Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 510 | #define SQLITE_CREATE_VIEW 8 /* View Name NULL */ |
| 511 | #define SQLITE_DELETE 9 /* Table Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 512 | #define SQLITE_DROP_INDEX 10 /* Index Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 513 | #define SQLITE_DROP_TABLE 11 /* Table Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 514 | #define SQLITE_DROP_TEMP_INDEX 12 /* Index Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 515 | #define SQLITE_DROP_TEMP_TABLE 13 /* Table Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 516 | #define SQLITE_DROP_TEMP_TRIGGER 14 /* Trigger Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 517 | #define SQLITE_DROP_TEMP_VIEW 15 /* View Name NULL */ |
drh | 77ad4e4 | 2003-01-14 02:49:27 +0000 | [diff] [blame] | 518 | #define SQLITE_DROP_TRIGGER 16 /* Trigger Name Table Name */ |
drh | e5f9c64 | 2003-01-13 23:27:31 +0000 | [diff] [blame] | 519 | #define SQLITE_DROP_VIEW 17 /* View Name NULL */ |
| 520 | #define SQLITE_INSERT 18 /* Table Name NULL */ |
| 521 | #define SQLITE_PRAGMA 19 /* Pragma Name 1st arg or NULL */ |
| 522 | #define SQLITE_READ 20 /* Table Name Column Name */ |
| 523 | #define SQLITE_SELECT 21 /* NULL NULL */ |
| 524 | #define SQLITE_TRANSACTION 22 /* NULL NULL */ |
| 525 | #define SQLITE_UPDATE 23 /* Table Name Column Name */ |
drh | 81e293b | 2003-06-06 19:00:42 +0000 | [diff] [blame] | 526 | #define SQLITE_ATTACH 24 /* Filename NULL */ |
| 527 | #define SQLITE_DETACH 25 /* Database Name NULL */ |
| 528 | |
drh | ed6c867 | 2003-01-12 18:02:16 +0000 | [diff] [blame] | 529 | |
| 530 | /* |
| 531 | ** The return value of the authorization function should be one of the |
| 532 | ** following constants: |
| 533 | */ |
| 534 | /* #define SQLITE_OK 0 // Allow access (This is actually defined above) */ |
| 535 | #define SQLITE_DENY 1 /* Abort the SQL statement with an error */ |
| 536 | #define SQLITE_IGNORE 2 /* Don't allow access, but don't generate an error */ |
| 537 | |
| 538 | /* |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 539 | ** Register a function that is called at every invocation of sqlite3_exec() |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 540 | ** or sqlite3_prepare(). This function can be used (for example) to generate |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 541 | ** a log file of all SQL executed against a database. |
drh | 18de482 | 2003-01-16 16:28:53 +0000 | [diff] [blame] | 542 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 543 | void *sqlite3_trace(sqlite*, void(*xTrace)(void*,const char*), void*); |
drh | 18de482 | 2003-01-16 16:28:53 +0000 | [diff] [blame] | 544 | |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 545 | /*** The Callback-Free API |
| 546 | ** |
| 547 | ** The following routines implement a new way to access SQLite that does not |
| 548 | ** involve the use of callbacks. |
| 549 | ** |
| 550 | ** An sqlite_vm is an opaque object that represents a single SQL statement |
| 551 | ** that is ready to be executed. |
| 552 | */ |
| 553 | typedef struct sqlite_vm sqlite_vm; |
| 554 | |
| 555 | /* |
| 556 | ** To execute an SQLite query without the use of callbacks, you first have |
| 557 | ** to compile the SQL using this routine. The 1st parameter "db" is a pointer |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 558 | ** to an sqlite object obtained from sqlite3_open(). The 2nd parameter |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 559 | ** "zSql" is the text of the SQL to be compiled. The remaining parameters |
| 560 | ** are all outputs. |
| 561 | ** |
| 562 | ** *pzTail is made to point to the first character past the end of the first |
| 563 | ** SQL statement in zSql. This routine only compiles the first statement |
| 564 | ** in zSql, so *pzTail is left pointing to what remains uncompiled. |
| 565 | ** |
| 566 | ** *ppVm is left pointing to a "virtual machine" that can be used to execute |
| 567 | ** 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] | 568 | ** If the input text contained no SQL (if the input is and empty string or |
| 569 | ** a comment) then *ppVm is set to NULL. |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 570 | ** |
| 571 | ** If any errors are detected during compilation, an error message is written |
| 572 | ** into space obtained from malloc() and *pzErrMsg is made to point to that |
| 573 | ** error message. The calling routine is responsible for freeing the text |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 574 | ** of this message when it has finished with it. Use sqlite3_freemem() to |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 575 | ** free the message. pzErrMsg may be NULL in which case no error message |
| 576 | ** will be generated. |
| 577 | ** |
| 578 | ** On success, SQLITE_OK is returned. Otherwise and error code is returned. |
| 579 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 580 | int sqlite3_compile( |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 581 | sqlite *db, /* The open database */ |
| 582 | const char *zSql, /* SQL statement to be compiled */ |
| 583 | const char **pzTail, /* OUT: uncompiled tail of zSql */ |
| 584 | sqlite_vm **ppVm, /* OUT: the virtual machine to execute zSql */ |
| 585 | char **pzErrmsg /* OUT: Error message. */ |
| 586 | ); |
| 587 | |
| 588 | /* |
| 589 | ** After an SQL statement has been compiled, it is handed to this routine |
| 590 | ** to be executed. This routine executes the statement as far as it can |
| 591 | ** go then returns. The return value will be one of SQLITE_DONE, |
| 592 | ** SQLITE_ERROR, SQLITE_BUSY, SQLITE_ROW, or SQLITE_MISUSE. |
| 593 | ** |
| 594 | ** SQLITE_DONE means that the execute of the SQL statement is complete |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 595 | ** an no errors have occurred. sqlite3_step() should not be called again |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 596 | ** for the same virtual machine. *pN is set to the number of columns in |
| 597 | ** the result set and *pazColName is set to an array of strings that |
| 598 | ** describe the column names and datatypes. The name of the i-th column |
| 599 | ** is (*pazColName)[i] and the datatype of the i-th column is |
| 600 | ** (*pazColName)[i+*pN]. *pazValue is set to NULL. |
| 601 | ** |
| 602 | ** SQLITE_ERROR means that the virtual machine encountered a run-time |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 603 | ** error. sqlite3_step() should not be called again for the same |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 604 | ** virtual machine. *pN is set to 0 and *pazColName and *pazValue are set |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 605 | ** to NULL. Use sqlite3_finalize() to obtain the specific error code |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 606 | ** and the error message text for the error. |
| 607 | ** |
| 608 | ** SQLITE_BUSY means that an attempt to open the database failed because |
| 609 | ** another thread or process is holding a lock. The calling routine |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 610 | ** can try again to open the database by calling sqlite3_step() again. |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 611 | ** The return code will only be SQLITE_BUSY if no busy handler is registered |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 612 | ** using the sqlite3_busy_handler() or sqlite3_busy_timeout() routines. If |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 613 | ** a busy handler callback has been registered but returns 0, then this |
| 614 | ** routine will return SQLITE_ERROR and sqltie_finalize() will return |
| 615 | ** SQLITE_BUSY when it is called. |
| 616 | ** |
| 617 | ** SQLITE_ROW means that a single row of the result is now available. |
| 618 | ** The data is contained in *pazValue. The value of the i-th column is |
| 619 | ** (*azValue)[i]. *pN and *pazColName are set as described in SQLITE_DONE. |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 620 | ** Invoke sqlite3_step() again to advance to the next row. |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 621 | ** |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 622 | ** SQLITE_MISUSE is returned if sqlite3_step() is called incorrectly. |
| 623 | ** For example, if you call sqlite3_step() after the virtual machine |
| 624 | ** has halted (after a prior call to sqlite3_step() has returned SQLITE_DONE) |
| 625 | ** or if you call sqlite3_step() with an incorrectly initialized virtual |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 626 | ** machine or a virtual machine that has been deleted or that is associated |
| 627 | ** with an sqlite structure that has been closed. |
| 628 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 629 | int sqlite3_step( |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 630 | sqlite_vm *pVm, /* The virtual machine to execute */ |
| 631 | int *pN, /* OUT: Number of columns in result */ |
| 632 | const char ***pazValue, /* OUT: Column data */ |
| 633 | const char ***pazColName /* OUT: Column names and datatypes */ |
| 634 | ); |
| 635 | |
| 636 | /* |
| 637 | ** This routine is called to delete a virtual machine after it has finished |
| 638 | ** executing. The return value is the result code. SQLITE_OK is returned |
| 639 | ** if the statement executed successfully and some other value is returned if |
| 640 | ** there was any kind of error. If an error occurred and pzErrMsg is not |
| 641 | ** NULL, then an error message is written into memory obtained from malloc() |
| 642 | ** and *pzErrMsg is made to point to that error message. The calling routine |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 643 | ** should use sqlite3_freemem() to delete this message when it has finished |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 644 | ** with it. |
| 645 | ** |
| 646 | ** This routine can be called at any point during the execution of the |
| 647 | ** virtual machine. If the virtual machine has not completed execution |
| 648 | ** when this routine is called, that is like encountering an error or |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 649 | ** an interrupt. (See sqlite3_interrupt().) Incomplete updates may be |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 650 | ** rolled back and transactions cancelled, depending on the circumstances, |
| 651 | ** and the result code returned will be SQLITE_ABORT. |
| 652 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 653 | int sqlite3_finalize(sqlite_vm*, char **pzErrMsg); |
drh | b86ccfb | 2003-01-28 23:13:10 +0000 | [diff] [blame] | 654 | |
danielk1977 | 999af64 | 2003-07-22 09:24:43 +0000 | [diff] [blame] | 655 | /* |
| 656 | ** This routine deletes the virtual machine, writes any error message to |
| 657 | ** *pzErrMsg and returns an SQLite return code in the same way as the |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 658 | ** sqlite3_finalize() function. |
danielk1977 | 999af64 | 2003-07-22 09:24:43 +0000 | [diff] [blame] | 659 | ** |
| 660 | ** Additionally, if ppVm is not NULL, *ppVm is left pointing to a new virtual |
| 661 | ** machine loaded with the compiled version of the original query ready for |
| 662 | ** execution. |
| 663 | ** |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 664 | ** If sqlite3_reset() returns SQLITE_SCHEMA, then *ppVm is set to NULL. |
danielk1977 | 999af64 | 2003-07-22 09:24:43 +0000 | [diff] [blame] | 665 | ** |
drh | 7c972de | 2003-09-06 22:18:07 +0000 | [diff] [blame] | 666 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
drh | 5045789 | 2003-09-06 01:10:47 +0000 | [diff] [blame] | 667 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 668 | int sqlite3_reset(sqlite_vm*, char **pzErrMsg); |
drh | 5045789 | 2003-09-06 01:10:47 +0000 | [diff] [blame] | 669 | |
| 670 | /* |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 671 | ** If the SQL that was handed to sqlite3_prepare contains variables that |
drh | 7c972de | 2003-09-06 22:18:07 +0000 | [diff] [blame] | 672 | ** are represeted in the SQL text by a question mark ('?'). This routine |
| 673 | ** is used to assign values to those variables. |
| 674 | ** |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 675 | ** The first parameter is a virtual machine obtained from sqlite3_prepare(). |
drh | 7c972de | 2003-09-06 22:18:07 +0000 | [diff] [blame] | 676 | ** The 2nd "idx" parameter determines which variable in the SQL statement |
| 677 | ** to bind the value to. The left most '?' is 1. The 3rd parameter is |
| 678 | ** the value to assign to that variable. The 4th parameter is the number |
| 679 | ** of bytes in the value, including the terminating \000 for strings. |
| 680 | ** Finally, the 5th "copy" parameter is TRUE if SQLite should make its |
| 681 | ** own private copy of this value, or false if the space that the 3rd |
| 682 | ** parameter points to will be unchanging and can be used directly by |
| 683 | ** SQLite. |
| 684 | ** |
| 685 | ** Unbound variables are treated as having a value of NULL. To explicitly |
| 686 | ** set a variable to NULL, call this routine with the 3rd parameter as a |
| 687 | ** NULL pointer. |
| 688 | ** |
| 689 | ** If the 4th "len" parameter is -1, then strlen() is used to find the |
| 690 | ** length. |
drh | 5045789 | 2003-09-06 01:10:47 +0000 | [diff] [blame] | 691 | ** |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 692 | ** This routine can only be called immediately after sqlite3_prepare() |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 693 | ** or sqlite3_reset() and before any calls to sqlite3_step(). |
drh | 5045789 | 2003-09-06 01:10:47 +0000 | [diff] [blame] | 694 | ** |
danielk1977 | 999af64 | 2003-07-22 09:24:43 +0000 | [diff] [blame] | 695 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
| 696 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 697 | int sqlite3_bind(sqlite_vm*, int idx, const char *value, int len, int copy); |
danielk1977 | 999af64 | 2003-07-22 09:24:43 +0000 | [diff] [blame] | 698 | |
danielk1977 | 348bb5d | 2003-10-18 09:37:26 +0000 | [diff] [blame] | 699 | /* |
| 700 | ** This routine configures a callback function - the progress callback - that |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 701 | ** is invoked periodically during long running calls to sqlite3_exec(), |
| 702 | ** sqlite3_step() and sqlite3_get_table(). An example use for this API is to keep |
danielk1977 | 348bb5d | 2003-10-18 09:37:26 +0000 | [diff] [blame] | 703 | ** a GUI updated during a large query. |
| 704 | ** |
| 705 | ** The progress callback is invoked once for every N virtual machine opcodes, |
| 706 | ** where N is the second argument to this function. The progress callback |
| 707 | ** itself is identified by the third argument to this function. The fourth |
| 708 | ** argument to this function is a void pointer passed to the progress callback |
| 709 | ** function each time it is invoked. |
| 710 | ** |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 711 | ** If a call to sqlite3_exec(), sqlite3_step() or sqlite3_get_table() results |
danielk1977 | 348bb5d | 2003-10-18 09:37:26 +0000 | [diff] [blame] | 712 | ** in less than N opcodes being executed, then the progress callback is not |
| 713 | ** invoked. |
| 714 | ** |
| 715 | ** Calling this routine overwrites any previously installed progress callback. |
| 716 | ** To remove the progress callback altogether, pass NULL as the third |
| 717 | ** argument to this function. |
| 718 | ** |
| 719 | ** If the progress callback returns a result other than 0, then the current |
| 720 | ** query is immediately terminated and any database changes rolled back. If the |
| 721 | ** query was part of a larger transaction, then the transaction is not rolled |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 722 | ** back and remains active. The sqlite3_exec() call returns SQLITE_ABORT. |
drh | aa940ea | 2004-01-15 02:44:03 +0000 | [diff] [blame] | 723 | ** |
| 724 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
danielk1977 | 348bb5d | 2003-10-18 09:37:26 +0000 | [diff] [blame] | 725 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 726 | void sqlite3_progress_handler(sqlite*, int, int(*)(void*), void*); |
danielk1977 | 348bb5d | 2003-10-18 09:37:26 +0000 | [diff] [blame] | 727 | |
drh | aa940ea | 2004-01-15 02:44:03 +0000 | [diff] [blame] | 728 | /* |
| 729 | ** Register a callback function to be invoked whenever a new transaction |
| 730 | ** is committed. The pArg argument is passed through to the callback. |
| 731 | ** callback. If the callback function returns non-zero, then the commit |
| 732 | ** is converted into a rollback. |
| 733 | ** |
| 734 | ** If another function was previously registered, its pArg value is returned. |
| 735 | ** Otherwise NULL is returned. |
| 736 | ** |
| 737 | ** Registering a NULL function disables the callback. |
| 738 | ** |
| 739 | ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ****** |
| 740 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 741 | void *sqlite3_commit_hook(sqlite*, int(*)(void*), void*); |
drh | aa940ea | 2004-01-15 02:44:03 +0000 | [diff] [blame] | 742 | |
drh | 22fbcb8 | 2004-02-01 01:22:50 +0000 | [diff] [blame] | 743 | /* |
| 744 | ** Open an encrypted SQLite database. If pKey==0 or nKey==0, this routine |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 745 | ** is the same as sqlite3_open(). |
drh | 22fbcb8 | 2004-02-01 01:22:50 +0000 | [diff] [blame] | 746 | ** |
| 747 | ** The code to implement this API is not available in the public release |
| 748 | ** of SQLite. |
| 749 | */ |
danielk1977 | 6f8a503 | 2004-05-10 10:34:51 +0000 | [diff] [blame] | 750 | sqlite *sqlite3_open_encrypted( |
drh | 22fbcb8 | 2004-02-01 01:22:50 +0000 | [diff] [blame] | 751 | const char *zFilename, /* Name of the encrypted database */ |
| 752 | const void *pKey, /* Pointer to the key */ |
| 753 | int nKey, /* Number of bytes in the key */ |
drh | e384a4e | 2004-02-12 20:49:36 +0000 | [diff] [blame] | 754 | int *pErrcode, /* Write error code here */ |
drh | 22fbcb8 | 2004-02-01 01:22:50 +0000 | [diff] [blame] | 755 | char **pzErrmsg /* Write error message here */ |
| 756 | ); |
| 757 | |
| 758 | /* |
| 759 | ** Change the key on an open database. If the current database is not |
| 760 | ** encrypted, this routine will encrypt it. If pNew==0 or nNew==0, the |
| 761 | ** database is decrypted. |
| 762 | ** |
| 763 | ** The code to implement this API is not available in the public release |
| 764 | ** of SQLite. |
| 765 | */ |
| 766 | int sqlite_rekey( |
| 767 | sqlite *db, /* Database to be rekeyed */ |
| 768 | const void *pKey, int nKey /* The new key */ |
| 769 | ); |
| 770 | |
drh | 6ff15d0 | 2004-03-14 22:12:34 +0000 | [diff] [blame] | 771 | /* |
| 772 | ** Encode a binary buffer "in" of size n bytes so that it contains |
| 773 | ** no instances of characters '\'' or '\000'. The output is |
| 774 | ** null-terminated and can be used as a string value in an INSERT |
| 775 | ** or UPDATE statement. Use sqlite_decode_binary() to convert the |
| 776 | ** string back into its original binary. |
| 777 | ** |
| 778 | ** The result is written into a preallocated output buffer "out". |
| 779 | ** "out" must be able to hold at least 2 +(257*n)/254 bytes. |
| 780 | ** In other words, the output will be expanded by as much as 3 |
| 781 | ** bytes for every 254 bytes of input plus 2 bytes of fixed overhead. |
| 782 | ** (This is approximately 2 + 1.0118*n or about a 1.2% size increase.) |
| 783 | ** |
| 784 | ** The return value is the number of characters in the encoded |
| 785 | ** string, excluding the "\000" terminator. |
| 786 | ** |
| 787 | ** If out==NULL then no output is generated but the routine still returns |
| 788 | ** the number of characters that would have been generated if out had |
| 789 | ** not been NULL. |
| 790 | */ |
| 791 | int sqlite_encode_binary(const unsigned char *in, int n, unsigned char *out); |
| 792 | |
| 793 | /* |
| 794 | ** Decode the string "in" into binary data and write it into "out". |
| 795 | ** This routine reverses the encoding created by sqlite_encode_binary(). |
| 796 | ** The output will always be a few bytes less than the input. The number |
| 797 | ** of bytes of output is returned. If the input is not a well-formed |
| 798 | ** encoding, -1 is returned. |
| 799 | ** |
| 800 | ** The "in" and "out" parameters may point to the same buffer in order |
| 801 | ** to decode a string in place. |
| 802 | */ |
| 803 | int sqlite_decode_binary(const unsigned char *in, unsigned char *out); |
| 804 | |
danielk1977 | 6622cce | 2004-05-20 11:00:52 +0000 | [diff] [blame] | 805 | |
| 806 | /* FIX ME */ |
danielk1977 | 295ba55 | 2004-05-19 10:34:51 +0000 | [diff] [blame] | 807 | typedef sqlite_vm sqlite3_stmt; |
danielk1977 | 6622cce | 2004-05-20 11:00:52 +0000 | [diff] [blame] | 808 | typedef sqlite sqlite3; |
danielk1977 | 295ba55 | 2004-05-19 10:34:51 +0000 | [diff] [blame] | 809 | |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 810 | /* |
| 811 | ** This routine is used to bind a 32-bit integer value to a variable |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 812 | ** in an SQL statement compiled by sqlite3_prepare(). See comments for |
| 813 | ** sqlite3_prepare() for more details on SQL statement variables. |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 814 | ** |
| 815 | ** The first argument is a pointer to an SQL statement previously |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 816 | ** obtained from a call to sqlite3_prepare(). The second parameter "i" |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 817 | ** determines the parameter to bind the value "iValue" to. |
| 818 | */ |
danielk1977 | 295ba55 | 2004-05-19 10:34:51 +0000 | [diff] [blame] | 819 | int sqlite3_bind_int32(sqlite3_stmt*, int i, int iValue); |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 820 | |
| 821 | /* |
| 822 | ** This routine is used to bind a 64-bit integer value to a variable |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 823 | ** in an SQL statement compiled by sqlite3_prepare(). See comments for |
| 824 | ** sqlite3_prepare() for more details on SQL statement variables. |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 825 | ** |
| 826 | ** The first argument is a pointer to an SQL statement previously |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 827 | ** obtained from a call to sqlite3_prepare(). The second parameter "i" |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 828 | ** determines the parameter to bind the value "iValue" to. |
| 829 | */ |
danielk1977 | 295ba55 | 2004-05-19 10:34:51 +0000 | [diff] [blame] | 830 | int sqlite3_bind_int64(sqlite3_stmt*, int i, long long int iValue); |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 831 | |
| 832 | /* |
| 833 | ** This routine is used to bind a real (floating point) value to a variable |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 834 | ** in an SQL statement compiled by sqlite3_prepare(). See comments for |
| 835 | ** sqlite3_prepare() for more details on SQL statement variables. |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 836 | ** |
| 837 | ** The first argument is a pointer to an SQL statement previously obtained |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 838 | ** from a call to sqlite3_prepare(). The second parameter "i" determines |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 839 | ** the parameter to bind the value "iValue" to. Internally, SQLite will |
| 840 | ** manipulate the value as a 64-bit IEEE float. |
| 841 | */ |
danielk1977 | 295ba55 | 2004-05-19 10:34:51 +0000 | [diff] [blame] | 842 | int sqlite3_bind_double(sqlite3_stmt*, int i, double iValue); |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 843 | |
| 844 | /* |
| 845 | ** This routine is used to bind a NULL value to a variable in an SQL |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 846 | ** statement compiled by sqlite3_prepare(). See comments for |
| 847 | ** sqlite3_prepare() for more details on SQL statement variables. |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 848 | ** |
| 849 | ** The first argument is a pointer to an SQL statement previously obtained |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 850 | ** from a call to sqlite3_prepare(). The second parameter "i" determines |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 851 | ** the parameter to bind the NULL value to. |
| 852 | */ |
danielk1977 | 295ba55 | 2004-05-19 10:34:51 +0000 | [diff] [blame] | 853 | int sqlite3_bind_null(sqlite3_stmt*, int i); |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 854 | |
| 855 | /* |
| 856 | ** This routine is used to bind a UTF-8 string value to a variable in an |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 857 | ** SQL statement compiled by sqlite3_prepare(). See comments for |
| 858 | ** sqlite3_prepare() for more details on SQL statement variables. |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 859 | ** |
| 860 | ** The first argument is a pointer to an SQL statement previously obtained |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 861 | ** from a call to sqlite3_prepare(). The second parameter "i" determines |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 862 | ** the parameter to bind the value to. Parameter three "z" is a pointer |
| 863 | ** to the UTF-8 string. |
| 864 | ** |
| 865 | ** The fourth "n" parameter is the number of bytes (not characters) in the |
| 866 | ** string pointed to by "z". "n" may or may not include any nul terminator |
| 867 | ** character. If "n" is less than zero, then SQLite assumes that "z" is |
| 868 | ** a nul terminated string. |
| 869 | ** |
| 870 | ** If paramater "eCopy" is true, then SQLite makes a copy of the string |
| 871 | ** pointed to by "z". If "eCopy" is false, then SQLite stores a pointer to |
| 872 | ** the original string data. In this case the caller must ensure that the |
| 873 | ** string data remains stable until after the SQL statement has been |
| 874 | ** finalised or another value bound to variable "i". |
| 875 | */ |
| 876 | int sqlite3_bind_text(sqlite3_stmt*, int i, const char* z, int n, int eCopy); |
| 877 | |
| 878 | /* |
| 879 | ** This routine is used to bind a UTF-16 string value to a variable in an |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 880 | ** SQL statement compiled by sqlite3_prepare(). See comments for |
| 881 | ** sqlite3_prepare() for more details on SQL statement variables. |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 882 | ** |
| 883 | ** The first argument is a pointer to an SQL statement previously obtained |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 884 | ** from a call to sqlite3_prepare(). The second parameter "i" determines |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 885 | ** the parameter to bind the value to. Parameter three "z" is a pointer to |
| 886 | ** the UTF-16 string. If the string does not begin with a byte-order-mark, |
| 887 | ** it is assumed to be encoded in the native byte order of the machine. |
| 888 | ** |
| 889 | ** The fourth "n" parameter is the number of bytes (not characters) in the |
| 890 | ** string pointed to by "z". "n" may or may not include any nul terminator |
| 891 | ** character. If "n" is less than zero, then SQLite assumes that "z" is |
| 892 | ** terminated by a pair of 0x00 characters. |
| 893 | ** |
| 894 | ** If paramater "eCopy" is true, then SQLite makes a copy of the string |
| 895 | ** pointed to by "z". If "eCopy" is false, then SQLite stores a pointer to |
| 896 | ** the original string data. In this case the caller must ensure that the |
| 897 | ** string data remains stable until after the SQL statement has been |
| 898 | ** finalised or another value bound to variable "i". |
| 899 | */ |
| 900 | int sqlite3_bind_text16(sqlite3_stmt*, int i, const void *z, int, int eCopy); |
| 901 | |
| 902 | /* |
| 903 | ** This routine is used to bind a blob value to a variable in an |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 904 | ** SQL statement compiled by sqlite3_prepare(). See comments for |
| 905 | ** sqlite3_prepare() for more details on SQL statement variables. |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 906 | ** |
| 907 | ** The first argument is a pointer to an SQL statement previously obtained |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 908 | ** from a call to sqlite3_prepare(). The second parameter "i" determines |
danielk1977 | e3209e4 | 2004-05-20 01:40:18 +0000 | [diff] [blame] | 909 | ** the parameter to bind the value to. Parameter three "z" is a pointer to |
| 910 | ** the blob of data. |
| 911 | ** |
| 912 | ** The fourth "n" parameter is the number of bytes in the blob pointed to |
| 913 | ** by "z". "n" may not be less than zero. |
| 914 | ** |
| 915 | ** If paramater "eCopy" is true, then SQLite makes a copy of the blob |
| 916 | ** pointed to by "z". If "eCopy" is false, then SQLite stores a pointer to |
| 917 | ** the original blob data. In this case the caller must ensure that the |
| 918 | ** blob data remains stable until after the SQL statement has been |
| 919 | ** finalised or another value bound to variable "i". |
| 920 | */ |
| 921 | int sqlite3_bind_blob(sqlite3_stmt*, int i, const void *z, int n, int eCopy); |
| 922 | |
danielk1977 | 6622cce | 2004-05-20 11:00:52 +0000 | [diff] [blame] | 923 | /* |
| 924 | ** Return the error code for the most recent sqlite3_* API call associated |
| 925 | ** with sqlite3 handle 'db'. SQLITE_OK is returned if the most recent |
| 926 | ** API call was successful. |
| 927 | ** |
| 928 | ** Calls to many sqlite3_* functions set the error code and string returned |
| 929 | ** by sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16() |
| 930 | ** (overwriting the previous values). A complete list of functions that set |
| 931 | ** the error code and string returned by these functions follows. Note that |
| 932 | ** calls to sqlite3_errcode(), sqlite3_errmsg() and sqlite3_errmsg16() |
| 933 | ** themselves do not affect the results of future invocations. |
| 934 | ** |
| 935 | ** sqlite3_bind_int32 |
| 936 | ** sqlite3_bind_int64 |
| 937 | ** sqlite3_bind_double |
| 938 | ** sqlite3_bind_null |
| 939 | ** sqlite3_bind_text |
| 940 | ** sqlite3_bind_text16 |
| 941 | ** sqlite3_bind_blob |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 942 | ** sqlite3_open |
| 943 | ** sqlite3_open16 |
| 944 | ** sqlite3_prepare |
| 945 | ** sqlite3_prepare16 |
| 946 | ** sqlite3_step |
| 947 | ** sqlite3_finalize |
danielk1977 | 6622cce | 2004-05-20 11:00:52 +0000 | [diff] [blame] | 948 | ** |
| 949 | ** Assuming no other intervening sqlite3_* API calls are made, the error |
| 950 | ** code returned by this function is associated with the same error as |
| 951 | ** the strings returned by sqlite3_errmsg() and sqlite3_errmsg16(). |
| 952 | */ |
| 953 | int sqlite3_errcode(sqlite3 *db); |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 954 | |
| 955 | /* |
danielk1977 | 6622cce | 2004-05-20 11:00:52 +0000 | [diff] [blame] | 956 | ** Return a pointer to a UTF-8 encoded string describing in english the |
| 957 | ** error condition for the most recent sqlite3_* API call. The returned |
| 958 | ** string is always terminated by an 0x00 byte. |
| 959 | ** |
| 960 | ** The string "not an error" is returned when the most recent API call was |
| 961 | ** successful. |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 962 | */ |
danielk1977 | 6622cce | 2004-05-20 11:00:52 +0000 | [diff] [blame] | 963 | const char *sqlite3_errmsg(sqlite3*); |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 964 | |
danielk1977 | 6622cce | 2004-05-20 11:00:52 +0000 | [diff] [blame] | 965 | /* |
| 966 | ** Return a pointer to a UTF-16 native byte order encoded string describing |
| 967 | ** in english the error condition for the most recent sqlite3_* API call. |
| 968 | ** The returned string is always terminated by a pair of 0x00 bytes. |
| 969 | ** |
| 970 | ** The string "not an error" is returned when the most recent API call was |
| 971 | ** successful. |
| 972 | */ |
| 973 | const void *sqlite3_errmsg16(sqlite3*); |
| 974 | |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 975 | /* |
| 976 | ** To execute an SQL query, it must first be compiled into a byte-code |
| 977 | ** program using this routine. The first parameter "db" is an SQLite |
| 978 | ** database handle. The second parameter "zSql" is the statement |
| 979 | ** to be compiled, encoded as UTF-8 text. If the next parameter, "nBytes", |
| 980 | ** is less than zero, then zSql is read up to the first nul terminator. |
| 981 | ** If "nBytes" is not less than zero, then it is the length of the |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 982 | ** string zSql in bytes (not characters). |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 983 | ** |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 984 | ** *pzTail is made to point to the first byte past the end of the first |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 985 | ** SQL statement in zSql. This routine only compiles the first statement |
| 986 | ** in zSql, so *pzTail is left pointing to what remains uncompiled. |
| 987 | ** |
| 988 | ** *ppStmt is left pointing to a compiled SQL statement that can be |
| 989 | ** executed using sqlite3_step(). Or if there is an error, *ppStmt may be |
| 990 | ** set to NULL. If the input text contained no SQL (if the input is and |
| 991 | ** empty string or a comment) then *ppStmt is set to NULL. |
| 992 | ** |
| 993 | ** On success, SQLITE_OK is returned. Otherwise an error code is returned. |
| 994 | ** |
| 995 | */ |
danielk1977 | 6622cce | 2004-05-20 11:00:52 +0000 | [diff] [blame] | 996 | int sqlite3_prepare( |
| 997 | sqlite3 *db, /* Database handle */ |
| 998 | const char *zSql, /* SQL statement, UTF-8 encoded */ |
| 999 | int nBytes, /* Length of zSql in bytes. */ |
| 1000 | sqlite3_stmt **ppStmt, /* OUT: Statement handle */ |
| 1001 | const char **pzTail /* OUT: Pointer to unused portion of zSql */ |
| 1002 | ); |
| 1003 | |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 1004 | /* |
| 1005 | ** To execute an SQL query, it must first be compiled into a byte-code |
| 1006 | ** program using this routine. The first parameter "db" is an SQLite |
| 1007 | ** database handle. The second parameter "zSql" is the statement |
| 1008 | ** to be compiled, encoded as UTF-16 text. If the next parameter, "nBytes", |
| 1009 | ** is less than zero, then zSql is read up to the first pair of successive |
| 1010 | ** 0x00 bytes. If "nBytes" is not less than zero, then it is the length of |
| 1011 | ** the string zSql in bytes (not characters). |
| 1012 | ** |
| 1013 | ** *pzTail is made to point to the first byte past the end of the first |
| 1014 | ** SQL statement in zSql. This routine only compiles the first statement |
| 1015 | ** in zSql, so *pzTail is left pointing to what remains uncompiled. |
| 1016 | ** |
| 1017 | ** *ppStmt is left pointing to a compiled SQL statement that can be |
| 1018 | ** executed using sqlite3_step(). Or if there is an error, *ppStmt may be |
| 1019 | ** set to NULL. If the input text contained no SQL (if the input is and |
| 1020 | ** empty string or a comment) then *ppStmt is set to NULL. |
| 1021 | ** |
| 1022 | ** On success, SQLITE_OK is returned. Otherwise an error code is returned. |
| 1023 | ** |
| 1024 | */ |
danielk1977 | 6622cce | 2004-05-20 11:00:52 +0000 | [diff] [blame] | 1025 | int sqlite3_prepare16( |
| 1026 | sqlite3 *db, /* Database handle */ |
| 1027 | const void *zSql, /* SQL statement, UTF-16 encoded */ |
| 1028 | int nBytes, /* Length of zSql in bytes. */ |
| 1029 | sqlite3_stmt **ppStmt, /* OUT: Statement handle */ |
| 1030 | const void **pzTail /* OUT: Pointer to unused portion of zSql */ |
| 1031 | ); |
| 1032 | |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 1033 | /* |
| 1034 | ** Return the number of columns in the result set returned by the compiled |
| 1035 | ** SQL statement. This routine returns 0 if pStmt is an SQL statement |
| 1036 | ** that does not return data (for example an UPDATE). |
| 1037 | */ |
| 1038 | int sqlite3_column_count(sqlite3_stmt *pStmt); |
| 1039 | |
| 1040 | /* |
| 1041 | ** The first parameter is a compiled SQL statement. This function returns |
| 1042 | ** the column heading for the Nth column of that statement, where N is the |
| 1043 | ** second function parameter. The string returned is UTF-8 encoded. |
| 1044 | */ |
| 1045 | const char *sqlite3_column_name(sqlite3_stmt*,int); |
| 1046 | |
| 1047 | /* |
| 1048 | ** The first parameter is a compiled SQL statement. This function returns |
| 1049 | ** the column heading for the Nth column of that statement, where N is the |
| 1050 | ** second function parameter. The string returned is UTF-16 encoded. |
| 1051 | */ |
| 1052 | const void *sqlite3_column_name16(sqlite3_stmt*,int); |
| 1053 | |
| 1054 | /* |
| 1055 | ** The first parameter is a compiled SQL statement. If this statement |
| 1056 | ** is a SELECT statement, the Nth column of the returned result set |
| 1057 | ** of the SELECT is a table column then the declared type of the table |
| 1058 | ** column is returned. If the Nth column of the result set is not at table |
| 1059 | ** column, then a NULL pointer is returned. The returned string is always |
| 1060 | ** UTF-8 encoded. For example, in the database schema: |
| 1061 | ** |
danielk1977 | 22322fd | 2004-05-25 23:35:17 +0000 | [diff] [blame^] | 1062 | ** CREATE TABLE t1(c1 VARIANT); |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 1063 | ** |
| 1064 | ** And the following statement compiled: |
| 1065 | ** |
| 1066 | ** SELECT c1 + 1, 0 FROM t1; |
| 1067 | ** |
| 1068 | ** Then this routine would return the string "VARIANT" for the second |
| 1069 | ** result column (i==1), and a NULL pointer for the first result column |
| 1070 | ** (i==0). |
| 1071 | */ |
| 1072 | const char *sqlite3_column_decltype(sqlite3_stmt *, int i); |
| 1073 | |
| 1074 | /* |
| 1075 | ** The first parameter is a compiled SQL statement. If this statement |
| 1076 | ** is a SELECT statement, the Nth column of the returned result set |
| 1077 | ** of the SELECT is a table column then the declared type of the table |
| 1078 | ** column is returned. If the Nth column of the result set is not at table |
| 1079 | ** column, then a NULL pointer is returned. The returned string is always |
| 1080 | ** UTF-16 encoded. For example, in the database schema: |
| 1081 | ** |
| 1082 | ** CREATE TABLE t1(c1 VARINT); |
| 1083 | ** |
| 1084 | ** And the following statement compiled: |
| 1085 | ** |
| 1086 | ** SELECT c1 + 1, 0 FROM t1; |
| 1087 | ** |
| 1088 | ** Then this routine would return the string "VARIANT" for the second |
| 1089 | ** result column (i==1), and a NULL pointer for the first result column |
| 1090 | ** (i==0). |
| 1091 | */ |
| 1092 | const void *sqlite3_column_decltype16(sqlite3_stmt*,int); |
| 1093 | |
| 1094 | /* |
| 1095 | ** After an SQL query has been compiled with a call to either |
| 1096 | ** sqlite3_prepare() or sqlite3_prepare16(), then this function must be |
| 1097 | ** called one or more times to execute the statement. |
| 1098 | ** |
| 1099 | ** The return value will be either SQLITE_BUSY, SQLITE_DONE, |
| 1100 | ** SQLITE_ROW, SQLITE_ERROR, or SQLITE_MISUSE. |
| 1101 | ** |
| 1102 | ** SQLITE_BUSY means that the database engine attempted to open |
| 1103 | ** a locked database and there is no busy callback registered. |
| 1104 | ** Call sqlite3_step() again to retry the open. |
| 1105 | ** |
| 1106 | ** SQLITE_DONE means that the statement has finished executing |
| 1107 | ** successfully. sqlite3_step() should not be called again on this virtual |
| 1108 | ** machine. |
| 1109 | ** |
| 1110 | ** If the SQL statement being executed returns any data, then |
| 1111 | ** SQLITE_ROW is returned each time a new row of data is ready |
| 1112 | ** for processing by the caller. The values may be accessed using |
| 1113 | ** the sqlite3_column_*() functions described below. sqlite3_step() |
| 1114 | ** is called again to retrieve the next row of data. |
| 1115 | ** |
| 1116 | ** SQLITE_ERROR means that a run-time error (such as a constraint |
| 1117 | ** violation) has occurred. sqlite3_step() should not be called again on |
| 1118 | ** the VM. More information may be found by calling sqlite3_errmsg(). |
| 1119 | ** |
| 1120 | ** SQLITE_MISUSE means that the this routine was called inappropriately. |
| 1121 | ** Perhaps it was called on a virtual machine that had already been |
| 1122 | ** finalized or on one that had previously returned SQLITE_ERROR or |
| 1123 | ** SQLITE_DONE. Or it could be the case the the same database connection |
| 1124 | ** is being used simulataneously by two or more threads. |
| 1125 | */ |
| 1126 | int sqlite3_step_new(sqlite3_stmt*); |
| 1127 | |
| 1128 | |
| 1129 | /* |
| 1130 | ** The sqlite3_finalize() function is called to delete a compiled |
| 1131 | ** SQL statement obtained by a previous call to sqlite3_prepare() |
| 1132 | ** or sqlite3_prepare16(). If the statement was executed successfully, or |
| 1133 | ** not executed at all, then SQLITE_OK is returned. If execution of the |
| 1134 | ** statement failed then an error code is returned. |
| 1135 | */ |
| 1136 | int sqlite3_finalize_new(sqlite3_stmt *pStmt); |
| 1137 | |
| 1138 | /* |
| 1139 | ** The sqlite3_reset() function is called to reset a compiled SQL |
| 1140 | ** statement obtained by a previous call to sqlite3_prepare() or |
| 1141 | ** sqlite3_prepare16() back to it's initial state, ready to be re-executed. |
| 1142 | ** Any SQL statement variables that had values bound to them using |
| 1143 | ** the sqlite3_bind_*() API retain their values. |
| 1144 | */ |
| 1145 | int sqlite3_reset_new(sqlite3_stmt *pStmt); |
| 1146 | |
danielk1977 | 8029086 | 2004-05-22 09:21:21 +0000 | [diff] [blame] | 1147 | /* |
| 1148 | ** Open the sqlite database file "filename", where "filename" is UTF-8 |
| 1149 | ** encoded. An sqlite3* handle is returned in *ppDb, even if an error |
| 1150 | ** occurs. If the database is opened (or created) successfully, then |
| 1151 | ** SQLITE_OK is returned. Otherwise an error code is returned and the |
| 1152 | ** sqlite3_errmsg() function may be used to obtain an English language |
| 1153 | ** explanation of the error. |
| 1154 | ** |
| 1155 | ** If the database file does not exist, then a new database is created |
| 1156 | ** using UTF-8 text encoding. |
| 1157 | ** |
| 1158 | ** Whether or not an error occurs when it is opened, resources associated |
| 1159 | ** with the sqlite3* handle should be released by passing it to |
| 1160 | ** sqlite3_close() when it is no longer required. |
| 1161 | */ |
| 1162 | int sqlite3_open( |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 1163 | const char *filename, /* Database filename (UTF-8) */ |
| 1164 | sqlite3 **ppDb, /* OUT: SQLite db handle */ |
| 1165 | const char **args /* Null terminated array of option strings */ |
| 1166 | ); |
| 1167 | |
danielk1977 | 8029086 | 2004-05-22 09:21:21 +0000 | [diff] [blame] | 1168 | /* |
| 1169 | ** Open the sqlite database file "filename", where "filename" is native |
| 1170 | ** byte order UTF-16 encoded. An sqlite3* handle is returned in *ppDb, even |
| 1171 | ** if an error occurs. If the database is opened (or created) successfully, |
| 1172 | ** then SQLITE_OK is returned. Otherwise an error code is returned and the |
| 1173 | ** sqlite3_errmsg() function may be used to obtain an English language |
| 1174 | ** explanation of the error. |
| 1175 | ** |
| 1176 | ** If the database file does not exist, then a new database is created |
| 1177 | ** using UTF-16 text encoding in the machines native byte order. |
| 1178 | ** |
| 1179 | ** Whether or not an error occurs when it is opened, resources associated |
| 1180 | ** with the sqlite3* handle should be released by passing it to |
| 1181 | ** sqlite3_close() when it is no longer required. |
| 1182 | */ |
danielk1977 | 4ad1713 | 2004-05-21 01:47:26 +0000 | [diff] [blame] | 1183 | int sqlite3_open16( |
| 1184 | const void *filename, /* Database filename (UTF-16) */ |
| 1185 | sqlite3 **ppDb, /* OUT: SQLite db handle */ |
| 1186 | const char **args /* Null terminated array of option strings */ |
| 1187 | ); |
| 1188 | |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 1189 | /* |
| 1190 | ** Return the number of values in the current row of the result set. |
| 1191 | ** |
| 1192 | ** After a call to sqlite3_step() that returns SQLITE_ROW, this routine |
| 1193 | ** will return the same value as the sqlite3_column_count() function. |
| 1194 | ** After sqlite3_step() has returned an SQLITE_DONE, SQLITE_BUSY or |
| 1195 | ** error code, or before sqlite3_step() has been called on a |
| 1196 | ** compiled SQL statement, this routine returns zero. |
| 1197 | */ |
danielk1977 | 93d4675 | 2004-05-23 13:30:58 +0000 | [diff] [blame] | 1198 | int sqlite3_data_count(sqlite3_stmt *pStmt); |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1199 | |
| 1200 | #define SQLITE3_INTEGER 1 |
| 1201 | #define SQLITE3_FLOAT 2 |
| 1202 | #define SQLITE3_TEXT 3 |
| 1203 | #define SQLITE3_BLOB 4 |
| 1204 | #define SQLITE3_NULL 5 |
| 1205 | |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 1206 | /* |
| 1207 | ** The first parameter is a compiled SQL statement for which the most |
| 1208 | ** recent call to sqlite3_step() has returned SQLITE_ROW. This routine |
| 1209 | ** retrieves the type of the Nth column of the current row, where |
| 1210 | ** N is the second function parameter. |
| 1211 | ** |
| 1212 | ** The value type is one of SQLITE3_INTEGER, SQLITE3_FLOAT, SQLITE3_TEXT, |
| 1213 | ** SQLITE3_BLOB and SQLITE3_NULL. |
| 1214 | */ |
| 1215 | int sqlite3_column_type(sqlite3_stmt *pStmt, int i); |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1216 | |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 1217 | /* |
| 1218 | ** The first parameter is a compiled SQL statement for which the most |
| 1219 | ** recent call to sqlite3_step() has returned SQLITE_ROW. This routine |
| 1220 | ** retrieves the value of the Nth column of the current row, where |
| 1221 | ** N is the second function parameter. |
| 1222 | ** |
| 1223 | ** The value returned depends on the type of the SQL column value, as |
| 1224 | ** returned by sqlite3_column_type(): |
| 1225 | ** |
| 1226 | ** SQLITE3_NULL A Null pointer. |
| 1227 | ** SQLITE3_INTEGER String representation of the integer, UTF-8 encoded. |
| 1228 | ** SQLITE3_FLOAT String representation of the real, UTF-8 encoded. |
| 1229 | ** SQLITE3_TEXT The string UTF-8 encoded. |
| 1230 | ** SQLITE3_BLOB A pointer to the blob of data. |
| 1231 | */ |
| 1232 | const unsigned char *sqlite3_column_data(sqlite3_stmt*,int); |
| 1233 | |
| 1234 | /* |
| 1235 | ** The first parameter is a compiled SQL statement for which the most |
| 1236 | ** recent call to sqlite3_step() has returned SQLITE_ROW. This routine |
| 1237 | ** retrieves the value of the Nth column of the current row, where |
| 1238 | ** N is the second function parameter. |
| 1239 | ** |
| 1240 | ** The value returned depends on the type of the SQL column value, as |
| 1241 | ** returned by sqlite3_column_type(): |
| 1242 | ** |
| 1243 | ** SQLITE3_NULL A Null pointer. |
| 1244 | ** SQLITE3_INTEGER String representation of the integer, UTF-16 encoded. |
| 1245 | ** SQLITE3_FLOAT String representation of the real, UTF-16 encoded. |
| 1246 | ** SQLITE3_TEXT The string UTF-16 encoded. |
| 1247 | ** SQLITE3_BLOB A pointer to the blob of data. |
| 1248 | */ |
| 1249 | const void *sqlite3_column_data16(sqlite3_stmt*,int); |
| 1250 | |
| 1251 | /* |
| 1252 | ** The first parameter is a compiled SQL statement for which the most |
| 1253 | ** recent call to sqlite3_step() has returned SQLITE_ROW. This routine |
danielk1977 | e1cd987 | 2004-05-22 10:33:04 +0000 | [diff] [blame] | 1254 | ** retrieves the length of the data in bytes returned by the |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 1255 | ** sqlite3_column_data() routine for the same second parameter value. |
| 1256 | ** |
| 1257 | ** If sqlite3_column_data() returns a UTF-8 string, then the length |
| 1258 | ** returned by this function includes the nul terminator character at the |
| 1259 | ** end of the UTF-8 string. |
| 1260 | */ |
| 1261 | int sqlite3_column_bytes(sqlite3_stmt*,int); |
| 1262 | |
| 1263 | /* |
| 1264 | ** The first parameter is a compiled SQL statement for which the most |
| 1265 | ** recent call to sqlite3_step() has returned SQLITE_ROW. This routine |
danielk1977 | e1cd987 | 2004-05-22 10:33:04 +0000 | [diff] [blame] | 1266 | ** retrieves the length of the data in bytes returned by the |
| 1267 | ** sqlite3_column_data() routine for the same second parameter value. |
| 1268 | ** |
| 1269 | ** If sqlite3_column_data() returns a UTF-16 string, then the length |
| 1270 | ** returned by this function includes the nul terminator character (two |
| 1271 | ** bytes) at the end of the UTF-16 string. |
| 1272 | */ |
| 1273 | int sqlite3_column_bytes16(sqlite3_stmt *, int); |
| 1274 | |
| 1275 | /* |
| 1276 | ** The first parameter is a compiled SQL statement for which the most |
| 1277 | ** recent call to sqlite3_step() has returned SQLITE_ROW. This routine |
danielk1977 | 106bb23 | 2004-05-21 10:08:53 +0000 | [diff] [blame] | 1278 | ** retrieves the value of the Nth column of the current row, where |
| 1279 | ** N is the second function parameter as an integer. |
| 1280 | ** |
| 1281 | ** SQLITE3_NULL 0 |
| 1282 | ** SQLITE3_INTEGER The integer value. |
| 1283 | ** SQLITE3_FLOAT The integer component of the real (2^63 if too large) |
| 1284 | ** SQLITE3_TEXT Integer conversion of string, or 0 |
| 1285 | ** SQLITE3_BLOB 0 |
| 1286 | */ |
| 1287 | long long int sqlite3_column_int(sqlite3_stmt*,int); |
| 1288 | |
| 1289 | /* |
| 1290 | ** The first parameter is a compiled SQL statement for which the most |
| 1291 | ** recent call to sqlite3_step() has returned SQLITE_ROW. This routine |
| 1292 | ** retrieves the value of the Nth column of the current row, where |
| 1293 | ** N is the second function parameter as an integer. |
| 1294 | ** |
| 1295 | ** SQLITE3_NULL 0.0 |
| 1296 | ** SQLITE3_INTEGER The value of the integer. Some rounding may occur. |
| 1297 | ** SQLITE3_FLOAT The value of the float. |
| 1298 | ** SQLITE3_TEXT Real number conversion of string, or 0.0 |
| 1299 | ** SQLITE3_BLOB 0.0 |
| 1300 | */ |
| 1301 | double sqlite3_column_float(sqlite3_stmt*,int); |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1302 | |
danielk1977 | 0ae8b83 | 2004-05-25 12:05:56 +0000 | [diff] [blame] | 1303 | |
danielk1977 | 0ffba6b | 2004-05-24 09:10:10 +0000 | [diff] [blame] | 1304 | /* |
| 1305 | ** Return the type of the sqlite3_value* passed as the first argument. |
| 1306 | ** The type is one of SQLITE3_NULL, SQLITE3_INTEGER, SQLITE3_FLOAT, |
| 1307 | ** SQLITE3_TEXT or SQLITE3_BLOB. |
| 1308 | */ |
danielk1977 | 93d4675 | 2004-05-23 13:30:58 +0000 | [diff] [blame] | 1309 | int sqlite3_value_type(sqlite3_value*); |
danielk1977 | 0ffba6b | 2004-05-24 09:10:10 +0000 | [diff] [blame] | 1310 | |
| 1311 | /* |
| 1312 | ** Return the value of the sqlite3_value* passed as the first argument. |
| 1313 | ** The value returned depends on the type of the value, as returned by |
| 1314 | ** sqlite3_value_type(): |
| 1315 | ** |
| 1316 | ** SQLITE3_NULL A Null pointer. |
| 1317 | ** SQLITE3_INTEGER String representation of the integer, UTF-8 encoded. |
| 1318 | ** SQLITE3_FLOAT String representation of the real, UTF-8 encoded. |
| 1319 | ** SQLITE3_TEXT The string UTF-8 encoded. |
| 1320 | ** SQLITE3_BLOB A pointer to the blob of data. |
| 1321 | */ |
danielk1977 | 93d4675 | 2004-05-23 13:30:58 +0000 | [diff] [blame] | 1322 | const unsigned char *sqlite3_value_data(sqlite3_value*); |
danielk1977 | 0ffba6b | 2004-05-24 09:10:10 +0000 | [diff] [blame] | 1323 | |
| 1324 | /* |
| 1325 | ** Return the number of bytes in the string or blob returned by a call |
| 1326 | ** to sqlite3_value_data() on the same sqlite3_value* object. |
| 1327 | */ |
| 1328 | int sqlite3_value_bytes(sqlite3_value*); |
| 1329 | |
| 1330 | /* |
| 1331 | ** Return the value of the sqlite3_value* passed as the first argument. |
| 1332 | ** The value returned depends on the type of the value, as returned by |
| 1333 | ** sqlite3_value_type(): |
| 1334 | ** |
| 1335 | ** SQLITE3_NULL A Null pointer. |
| 1336 | ** SQLITE3_INTEGER String representation of the integer, UTF-16 encoded. |
| 1337 | ** SQLITE3_FLOAT String representation of the real, UTF-16 encoded. |
| 1338 | ** SQLITE3_TEXT The string UTF-16 encoded. |
| 1339 | ** SQLITE3_BLOB A pointer to the blob of data. |
| 1340 | */ |
danielk1977 | 93d4675 | 2004-05-23 13:30:58 +0000 | [diff] [blame] | 1341 | const void *sqlite3_value_data16(sqlite3_value*); |
danielk1977 | 0ffba6b | 2004-05-24 09:10:10 +0000 | [diff] [blame] | 1342 | |
| 1343 | /* |
| 1344 | ** Return the number of bytes in the string or blob returned by a call |
| 1345 | ** to sqlite3_value_data16() on the same sqlite3_value* object. |
| 1346 | */ |
| 1347 | int sqlite3_value_bytes16(sqlite3_value*); |
| 1348 | |
| 1349 | /* |
| 1350 | ** Return the value of the sqlite3_value* passed as the first argument. |
| 1351 | ** The value returned depends on the type of the value, as returned by |
| 1352 | ** sqlite3_value_type(): |
| 1353 | ** |
| 1354 | ** SQLITE3_NULL 0 |
| 1355 | ** SQLITE3_INTEGER The integer value. |
| 1356 | ** SQLITE3_FLOAT The integer component of the real (2^63 if too large) |
| 1357 | ** SQLITE3_TEXT Integer conversion of string, or 0 |
| 1358 | ** SQLITE3_BLOB 0 |
| 1359 | */ |
danielk1977 | 93d4675 | 2004-05-23 13:30:58 +0000 | [diff] [blame] | 1360 | long long int sqlite3_value_int(sqlite3_value*); |
danielk1977 | 0ffba6b | 2004-05-24 09:10:10 +0000 | [diff] [blame] | 1361 | |
| 1362 | /* |
| 1363 | ** Return the value of the sqlite3_value* passed as the first argument. |
| 1364 | ** The value returned depends on the type of the value, as returned by |
| 1365 | ** sqlite3_value_type(): |
| 1366 | ** |
| 1367 | ** SQLITE3_NULL 0.0 |
| 1368 | ** SQLITE3_INTEGER The value of the integer. Some rounding may occur. |
| 1369 | ** SQLITE3_FLOAT The value of the float. |
| 1370 | ** SQLITE3_TEXT Real number conversion of string, or 0.0 |
| 1371 | ** SQLITE3_BLOB 0.0 |
| 1372 | */ |
danielk1977 | 93d4675 | 2004-05-23 13:30:58 +0000 | [diff] [blame] | 1373 | double sqlite3_value_float(sqlite3_value*); |
| 1374 | |
danielk1977 | 0ae8b83 | 2004-05-25 12:05:56 +0000 | [diff] [blame] | 1375 | /* |
| 1376 | ** Aggregate functions use the following routine to allocate |
| 1377 | ** a structure for storing their state. The first time this routine |
| 1378 | ** is called for a particular aggregate, a new structure of size nBytes |
| 1379 | ** is allocated, zeroed, and returned. On subsequent calls (for the |
| 1380 | ** same aggregate instance) the same buffer is returned. The implementation |
| 1381 | ** of the aggregate can use the returned buffer to accumulate data. |
| 1382 | ** |
| 1383 | ** The buffer allocated is freed automatically by SQLite. |
| 1384 | */ |
| 1385 | void *sqlite3_get_context(sqlite3_context*, int nBytes); |
danielk1977 | 7e18c25 | 2004-05-25 11:47:24 +0000 | [diff] [blame] | 1386 | |
| 1387 | /* |
| 1388 | ** The pUserData parameter to the sqlite3_create_function() and |
| 1389 | ** sqlite3_create_aggregate() routines used to register user functions |
| 1390 | ** is available to the implementation of the function using this |
| 1391 | ** call. |
| 1392 | */ |
| 1393 | void *sqlite3_user_data(sqlite3_context*); |
| 1394 | |
| 1395 | /* |
| 1396 | ** The following three functions may be called from within a user-defined |
| 1397 | ** function callback or a user-defined aggregate finalizer callback. The |
| 1398 | ** result of the user-defined function or aggregate is set to the value of |
| 1399 | ** the second parameter. Any value previously set as the return value via |
| 1400 | ** an sqlite3_result_*() call is overwritten. |
| 1401 | ** |
| 1402 | ** The first parameter to each of these routines must be a copy of the |
| 1403 | ** sqlite3_context* pointer passed to the user-defined function or |
| 1404 | ** aggregate finalizer function. |
| 1405 | */ |
| 1406 | void sqlite3_result_int32(sqlite3_context*, int); |
| 1407 | void sqlite3_result_int64(sqlite3_context*, long long int); |
| 1408 | void sqlite3_result_double(sqlite3_context*, double); |
| 1409 | |
| 1410 | /* |
| 1411 | ** This function may be called from within a user-defined function callback |
| 1412 | ** or a user-defined aggregate finalizer callback. The result of the |
| 1413 | ** user-defined function or aggregate is set to NULL. Any value previously |
| 1414 | ** set as the return value via an sqlite3_result_*() call is overwritten. |
| 1415 | ** |
| 1416 | ** The parameter to this routine must be a copy of the sqlite3_context* |
| 1417 | ** pointer passed to the user-defined function or aggregate finalizer |
| 1418 | ** function. |
| 1419 | */ |
| 1420 | void sqlite3_result_null(sqlite3_context*); |
| 1421 | |
| 1422 | /* |
| 1423 | ** The following two functions may be called from within a user-defined or |
| 1424 | ** a user-defined aggregate finalizer callback to return a text value. |
| 1425 | ** The second parameter is a pointer to the string, encoded in UTF-8 |
| 1426 | ** for sqlite3_result_text() and UTF-16 (machine byte order) for |
| 1427 | ** sqlite3_result_text16(). |
| 1428 | ** |
| 1429 | ** If the third parameter, n, is positive, it is the number of bytes (not |
| 1430 | ** characters) in the string data. A negative n value indicates that the |
| 1431 | ** string may be read up to the nul terminator character. |
| 1432 | ** |
| 1433 | ** If the fourth parameter is non-zero, then a copy is made of the string. |
| 1434 | ** Otherwise, SQLite stores a pointer to the original string data. |
| 1435 | ** |
| 1436 | ** The first parameter to this routine must be a copy of the |
| 1437 | ** sqlite3_context* pointer passed to the user-defined function or |
| 1438 | ** aggregate finalizer function. |
| 1439 | */ |
| 1440 | void sqlite3_result_text(sqlite3_context*, const char*, int n, int eCopy); |
| 1441 | void sqlite3_result_text16(sqlite3_context*, const void*, int n, int eCopy); |
| 1442 | |
| 1443 | /* |
| 1444 | ** The following function may be called from within a user-defined or a |
| 1445 | ** user-defined aggregate finalizer callback to return a blob value. The |
| 1446 | ** second parameter is a pointer to the blob of data. The third parameter |
| 1447 | ** is the number of bytes of data in the blob. |
| 1448 | ** |
| 1449 | ** If the fourth parameter is non-zero, then a copy is made of the blob. |
| 1450 | ** Otherwise, SQLite stores a pointer to the original blob data. |
| 1451 | ** |
| 1452 | ** The first parameter to this routine must be a copy of the |
| 1453 | ** sqlite3_context* pointer passed to the user-defined function or |
| 1454 | ** aggregate finalizer function. |
| 1455 | */ |
| 1456 | void sqlite3_result_blob(sqlite3_context*, const void*, int n, int eCopy); |
| 1457 | |
| 1458 | /* |
| 1459 | ** These routines are used from within a user-defined or a user-defined |
| 1460 | ** aggregate finalizer callback to return an error. The second parameter |
| 1461 | ** is a pointer to a string describing the error, or NULL if no explanation |
| 1462 | ** is provided. |
| 1463 | ** |
| 1464 | ** The string should be encoded in UTF-8 for sqlite3_result_error() and |
| 1465 | ** UTF-16 (machine byte order) for sqlite3_result_error16(). |
| 1466 | ** |
| 1467 | ** If not negative, the third parameter is the number of bytes (not |
| 1468 | ** characters) in the string passed as the second argument. If the third |
| 1469 | ** parameter is negative, then the string is read up to the first nul |
| 1470 | ** terminator character. |
| 1471 | */ |
| 1472 | void sqlite3_result_error(sqlite3_context*, const char*, int); |
| 1473 | void sqlite3_result_error16(sqlite3_context*, const void*, int); |
| 1474 | |
drh | 382c024 | 2001-10-06 16:33:02 +0000 | [diff] [blame] | 1475 | #ifdef __cplusplus |
| 1476 | } /* End of the 'extern "C"' block */ |
| 1477 | #endif |
danielk1977 | 4adee20 | 2004-05-08 08:23:19 +0000 | [diff] [blame] | 1478 | #endif |