• Skip to content
  • Skip to link menu
KDE 4.2 API Reference
  • KDE API Reference
  • API Reference
  • Sitemap
  • Contact Us
 

digikam

sqlite.h

Go to the documentation of this file.
00001 /*
00002 ** 2001 September 15
00003 **
00004 ** The author disclaims copyright to this source code.  In place of
00005 ** a legal notice, here is a blessing:
00006 **
00007 **    May you do good and not evil.
00008 **    May you find forgiveness for yourself and forgive others.
00009 **    May you share freely, never taking more than you give.
00010 **
00011 *************************************************************************
00012 ** This header file defines the interface that the SQLite library
00013 ** presents to client programs.
00014 **
00015 ** @(#) $Id: sqlite.h 871802 2008-10-15 17:23:04Z aclemens $
00016 */
00017 #ifndef _SQLITE_H_
00018 #define _SQLITE_H_
00019 #include <stdarg.h>     /* Needed for the definition of va_list */
00020 
00021 /*
00022 ** Make sure we can call this stuff from C++.
00023 */
00024 #ifdef __cplusplus
00025 extern "C" {
00026 #endif
00027 
00028 /*
00029 ** The version of the SQLite library.
00030 */
00031 #define SQLITE_VERSION         "2.8.14"
00032 
00033 /*
00034 ** The version string is also compiled into the library so that a program
00035 ** can check to make sure that the lib*.a file and the *.h file are from
00036 ** the same version.
00037 */
00038 extern const char sqlite_version[];
00039 
00040 /*
00041 ** The SQLITE_UTF8 macro is defined if the library expects to see
00042 ** UTF-8 encoded data.  The SQLITE_ISO8859 macro is defined if the
00043 ** iso8859 encoded should be used.
00044 */
00045 /* #define SQLITE_ISO8859 1 */
00046 
00047 /* DigiKam customizations */
00048 #define SQLITE_UTF8 1
00049 #define THREADSAFE  1
00050 
00051 /*
00052 ** The following constant holds one of two strings, "UTF-8" or "iso8859",
00053 ** depending on which character encoding the SQLite library expects to
00054 ** see.  The character encoding makes a difference for the LIKE and GLOB
00055 ** operators and for the LENGTH() and SUBSTR() functions.
00056 */
00057 extern const char sqlite_encoding[];
00058 
00059 /*
00060 ** Each open sqlite database is represented by an instance of the
00061 ** following opaque structure.
00062 */
00063 typedef struct sqlite sqlite;
00064 
00065 /*
00066 ** A function to open a new sqlite database.  
00067 **
00068 ** If the database does not exist and mode indicates write
00069 ** permission, then a new database is created.  If the database
00070 ** does not exist and mode does not indicate write permission,
00071 ** then the open fails, an error message generated (if errmsg!=0)
00072 ** and the function returns 0.
00073 ** 
00074 ** If mode does not indicates user write permission, then the 
00075 ** database is opened read-only.
00076 **
00077 ** The Truth:  As currently implemented, all databases are opened
00078 ** for writing all the time.  Maybe someday we will provide the
00079 ** ability to open a database readonly.  The mode parameters is
00080 ** provided in anticipation of that enhancement.
00081 */
00082 sqlite *sqlite_open(const char *filename, int mode, char **errmsg);
00083 
00084 /*
00085 ** A function to close the database.
00086 **
00087 ** Call this function with a pointer to a structure that was previously
00088 ** returned from sqlite_open() and the corresponding database will by closed.
00089 */
00090 void sqlite_close(sqlite *);
00091 
00092 /*
00093 ** The type for a callback function.
00094 */
00095 typedef int (*sqlite_callback)(void*,int,char**, char**);
00096 
00097 /*
00098 ** A function to executes one or more statements of SQL.
00099 **
00100 ** If one or more of the SQL statements are queries, then
00101 ** the callback function specified by the 3rd parameter is
00102 ** invoked once for each row of the query result.  This callback
00103 ** should normally return 0.  If the callback returns a non-zero
00104 ** value then the query is aborted, all subsequent SQL statements
00105 ** are skipped and the sqlite_exec() function returns the SQLITE_ABORT.
00106 **
00107 ** The 4th parameter is an arbitrary pointer that is passed
00108 ** to the callback function as its first parameter.
00109 **
00110 ** The 2nd parameter to the callback function is the number of
00111 ** columns in the query result.  The 3rd parameter to the callback
00112 ** is an array of strings holding the values for each column.
00113 ** The 4th parameter to the callback is an array of strings holding
00114 ** the names of each column.
00115 **
00116 ** The callback function may be NULL, even for queries.  A NULL
00117 ** callback is not an error.  It just means that no callback
00118 ** will be invoked.
00119 **
00120 ** If an error occurs while parsing or evaluating the SQL (but
00121 ** not while executing the callback) then an appropriate error
00122 ** message is written into memory obtained from malloc() and
00123 ** *errmsg is made to point to that message.  The calling function
00124 ** is responsible for freeing the memory that holds the error
00125 ** message.   Use sqlite_freemem() for this.  If errmsg==NULL,
00126 ** then no error message is ever written.
00127 **
00128 ** The return value is is SQLITE_OK if there are no errors and
00129 ** some other return code if there is an error.  The particular
00130 ** return value depends on the type of error. 
00131 **
00132 ** If the query could not be executed because a database file is
00133 ** locked or busy, then this function returns SQLITE_BUSY.  (This
00134 ** behavior can be modified somewhat using the sqlite_busy_handler()
00135 ** and sqlite_busy_timeout() functions below.)
00136 */
00137 int sqlite_exec(
00138   sqlite*,                      /* An open database */
00139   const char *sql,              /* SQL to be executed */
00140   sqlite_callback,              /* Callback function */
00141   void *,                       /* 1st argument to callback function */
00142   char **errmsg                 /* Error msg written here */
00143 );
00144 
00145 /*
00146 ** Return values for sqlite_exec() and sqlite_step()
00147 */
00148 #define SQLITE_OK           0   /* Successful result */
00149 #define SQLITE_ERROR        1   /* SQL error or missing database */
00150 #define SQLITE_INTERNAL     2   /* An internal logic error in SQLite */
00151 #define SQLITE_PERM         3   /* Access permission denied */
00152 #define SQLITE_ABORT        4   /* Callback routine requested an abort */
00153 #define SQLITE_BUSY         5   /* The database file is locked */
00154 #define SQLITE_LOCKED       6   /* A table in the database is locked */
00155 #define SQLITE_NOMEM        7   /* A malloc() failed */
00156 #define SQLITE_READONLY     8   /* Attempt to write a readonly database */
00157 #define SQLITE_INTERRUPT    9   /* Operation terminated by sqlite_interrupt() */
00158 #define SQLITE_IOERR       10   /* Some kind of disk I/O error occurred */
00159 #define SQLITE_CORRUPT     11   /* The database disk image is malformed */
00160 #define SQLITE_NOTFOUND    12   /* (Internal Only) Table or record not found */
00161 #define SQLITE_FULL        13   /* Insertion failed because database is full */
00162 #define SQLITE_CANTOPEN    14   /* Unable to open the database file */
00163 #define SQLITE_PROTOCOL    15   /* Database lock protocol error */
00164 #define SQLITE_EMPTY       16   /* (Internal Only) Database table is empty */
00165 #define SQLITE_SCHEMA      17   /* The database schema changed */
00166 #define SQLITE_TOOBIG      18   /* Too much data for one row of a table */
00167 #define SQLITE_CONSTRAINT  19   /* Abort due to constraint violation */
00168 #define SQLITE_MISMATCH    20   /* Data type mismatch */
00169 #define SQLITE_MISUSE      21   /* Library used incorrectly */
00170 #define SQLITE_NOLFS       22   /* Uses OS features not supported on host */
00171 #define SQLITE_AUTH        23   /* Authorization denied */
00172 #define SQLITE_FORMAT      24   /* Auxiliary database format error */
00173 #define SQLITE_RANGE       25   /* 2nd parameter to sqlite_bind out of range */
00174 #define SQLITE_NOTADB      26   /* File opened that is not a database file */
00175 #define SQLITE_ROW         100  /* sqlite_step() has another row ready */
00176 #define SQLITE_DONE        101  /* sqlite_step() has finished executing */
00177 
00178 /*
00179 ** Each entry in an SQLite table has a unique integer key.  (The key is
00180 ** the value of the INTEGER PRIMARY KEY column if there is such a column,
00181 ** otherwise the key is generated at random.  The unique key is always
00182 ** available as the ROWID, OID, or _ROWID_ column.)  The following routine
00183 ** returns the integer key of the most recent insert in the database.
00184 **
00185 ** This function is similar to the mysql_insert_id() function from MySQL.
00186 */
00187 int sqlite_last_insert_rowid(sqlite*);
00188 
00189 /*
00190 ** This function returns the number of database rows that were changed
00191 ** (or inserted or deleted) by the most recent called sqlite_exec().
00192 **
00193 ** All changes are counted, even if they were later undone by a
00194 ** ROLLBACK or ABORT.  Except, changes associated with creating and
00195 ** dropping tables are not counted.
00196 **
00197 ** If a callback invokes sqlite_exec() recursively, then the changes
00198 ** in the inner, recursive call are counted together with the changes
00199 ** in the outer call.
00200 **
00201 ** SQLite implements the command "DELETE FROM table" without a WHERE clause
00202 ** by dropping and recreating the table.  (This is much faster than going
00203 ** through and deleting individual elements form the table.)  Because of
00204 ** this optimization, the change count for "DELETE FROM table" will be
00205 ** zero regardless of the number of elements that were originally in the
00206 ** table. To get an accurate count of the number of rows deleted, use
00207 ** "DELETE FROM table WHERE 1" instead.
00208 */
00209 int sqlite_changes(sqlite*);
00210 
00211 /*
00212 ** This function returns the number of database rows that were changed
00213 ** by the last INSERT, UPDATE, or DELETE statement executed by sqlite_exec(),
00214 ** or by the last VM to run to completion. The change count is not updated
00215 ** by SQL statements other than INSERT, UPDATE or DELETE.
00216 **
00217 ** Changes are counted, even if they are later undone by a ROLLBACK or
00218 ** ABORT. Changes associated with trigger programs that execute as a
00219 ** result of the INSERT, UPDATE, or DELETE statement are not counted.
00220 **
00221 ** If a callback invokes sqlite_exec() recursively, then the changes
00222 ** in the inner, recursive call are counted together with the changes
00223 ** in the outer call.
00224 **
00225 ** SQLite implements the command "DELETE FROM table" without a WHERE clause
00226 ** by dropping and recreating the table.  (This is much faster than going
00227 ** through and deleting individual elements form the table.)  Because of
00228 ** this optimization, the change count for "DELETE FROM table" will be
00229 ** zero regardless of the number of elements that were originally in the
00230 ** table. To get an accurate count of the number of rows deleted, use
00231 ** "DELETE FROM table WHERE 1" instead.
00232 **
00233 ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ******
00234 */
00235 int sqlite_last_statement_changes(sqlite*);
00236 
00237 /* If the parameter to this routine is one of the return value constants
00238 ** defined above, then this routine returns a constant text string which
00239 ** describes (in English) the meaning of the return value.
00240 */
00241 const char *sqlite_error_string(int);
00242 #define sqliteErrStr sqlite_error_string  /* Legacy. Do not use in new code. */
00243 
00244 /* This function causes any pending database operation to abort and
00245 ** return at its earliest opportunity.  This routine is typically
00246 ** called in response to a user action such as pressing "Cancel"
00247 ** or Ctrl-C where the user wants a long query operation to halt
00248 ** immediately.
00249 */
00250 void sqlite_interrupt(sqlite*);
00251 
00252 
00253 /* This function returns true if the given input string comprises
00254 ** one or more complete SQL statements.
00255 **
00256 ** The algorithm is simple.  If the last token other than spaces
00257 ** and comments is a semicolon, then return true.  otherwise return
00258 ** false.
00259 */
00260 int sqlite_complete(const char *sql);
00261 
00262 /*
00263 ** This routine identifies a callback function that is invoked
00264 ** whenever an attempt is made to open a database table that is
00265 ** currently locked by another process or thread.  If the busy callback
00266 ** is NULL, then sqlite_exec() returns SQLITE_BUSY immediately if
00267 ** it finds a locked table.  If the busy callback is not NULL, then
00268 ** sqlite_exec() invokes the callback with three arguments.  The
00269 ** second argument is the name of the locked table and the third
00270 ** argument is the number of times the table has been busy.  If the
00271 ** busy callback returns 0, then sqlite_exec() immediately returns
00272 ** SQLITE_BUSY.  If the callback returns non-zero, then sqlite_exec()
00273 ** tries to open the table again and the cycle repeats.
00274 **
00275 ** The default busy callback is NULL.
00276 **
00277 ** Sqlite is re-entrant, so the busy handler may start a new query. 
00278 ** (It is not clear why anyone would every want to do this, but it
00279 ** is allowed, in theory.)  But the busy handler may not close the
00280 ** database.  Closing the database from a busy handler will delete 
00281 ** data structures out from under the executing query and will 
00282 ** probably result in a coredump.
00283 */
00284 void sqlite_busy_handler(sqlite*, int(*)(void*,const char*,int), void*);
00285 
00286 /*
00287 ** This routine sets a busy handler that sleeps for a while when a
00288 ** table is locked.  The handler will sleep multiple times until 
00289 ** at least "ms" milliseconds of sleeping have been done.  After
00290 ** "ms" milliseconds of sleeping, the handler returns 0 which
00291 ** causes sqlite_exec() to return SQLITE_BUSY.
00292 **
00293 ** Calling this routine with an argument less than or equal to zero
00294 ** turns off all busy handlers.
00295 */
00296 void sqlite_busy_timeout(sqlite*, int ms);
00297 
00298 /*
00299 ** This next routine is really just a wrapper around sqlite_exec().
00300 ** Instead of invoking a user-supplied callback for each row of the
00301 ** result, this routine remembers each row of the result in memory
00302 ** obtained from malloc(), then returns all of the result after the
00303 ** query has finished. 
00304 **
00305 ** As an example, suppose the query result where this table:
00306 **
00307 **        Name        | Age
00308 **        -----------------------
00309 **        Alice       | 43
00310 **        Bob         | 28
00311 **        Cindy       | 21
00312 **
00313 ** If the 3rd argument were &azResult then after the function returns
00314 ** azResult will contain the following data:
00315 **
00316 **        azResult[0] = "Name";
00317 **        azResult[1] = "Age";
00318 **        azResult[2] = "Alice";
00319 **        azResult[3] = "43";
00320 **        azResult[4] = "Bob";
00321 **        azResult[5] = "28";
00322 **        azResult[6] = "Cindy";
00323 **        azResult[7] = "21";
00324 **
00325 ** Notice that there is an extra row of data containing the column
00326 ** headers.  But the *nrow return value is still 3.  *ncolumn is
00327 ** set to 2.  In general, the number of values inserted into azResult
00328 ** will be ((*nrow) + 1)*(*ncolumn).
00329 **
00330 ** After the calling function has finished using the result, it should 
00331 ** pass the result data pointer to sqlite_free_table() in order to 
00332 ** release the memory that was malloc-ed.  Because of the way the 
00333 ** malloc() happens, the calling function must not try to call 
00334 ** malloc() directly.  Only sqlite_free_table() is able to release 
00335 ** the memory properly and safely.
00336 **
00337 ** The return value of this routine is the same as from sqlite_exec().
00338 */
00339 int sqlite_get_table(
00340   sqlite*,               /* An open database */
00341   const char *sql,       /* SQL to be executed */
00342   char ***resultp,       /* Result written to a char *[]  that this points to */
00343   int *nrow,             /* Number of result rows written here */
00344   int *ncolumn,          /* Number of result columns written here */
00345   char **errmsg          /* Error msg written here */
00346 );
00347 
00348 /*
00349 ** Call this routine to free the memory that sqlite_get_table() allocated.
00350 */
00351 void sqlite_free_table(char **result);
00352 
00353 /*
00354 ** The following routines are wrappers around sqlite_exec() and
00355 ** sqlite_get_table().  The only difference between the routines that
00356 ** follow and the originals is that the second argument to the 
00357 ** routines that follow is really a printf()-style format
00358 ** string describing the SQL to be executed.  Arguments to the format
00359 ** string appear at the end of the argument list.
00360 **
00361 ** All of the usual printf formatting options apply.  In addition, there
00362 ** is a "%q" option.  %q works like %s in that it substitutes a null-terminated
00363 ** string from the argument list.  But %q also doubles every '\'' character.
00364 ** %q is designed for use inside a string literal.  By doubling each '\''
00365 ** character it escapes that character and allows it to be inserted into
00366 ** the string.
00367 **
00368 ** For example, so some string variable contains text as follows:
00369 **
00370 **      char *zText = "It's a happy day!";
00371 **
00372 ** We can use this text in an SQL statement as follows:
00373 **
00374 **      sqlite_exec_printf(db, "INSERT INTO table VALUES('%q')",
00375 **          callback1, 0, 0, zText);
00376 **
00377 ** Because the %q format string is used, the '\'' character in zText
00378 ** is escaped and the SQL generated is as follows:
00379 **
00380 **      INSERT INTO table1 VALUES('It''s a happy day!')
00381 **
00382 ** This is correct.  Had we used %s instead of %q, the generated SQL
00383 ** would have looked like this:
00384 **
00385 **      INSERT INTO table1 VALUES('It's a happy day!');
00386 **
00387 ** This second example is an SQL syntax error.  As a general rule you
00388 ** should always use %q instead of %s when inserting text into a string 
00389 ** literal.
00390 */
00391 int sqlite_exec_printf(
00392   sqlite*,                      /* An open database */
00393   const char *sqlFormat,        /* printf-style format string for the SQL */
00394   sqlite_callback,              /* Callback function */
00395   void *,                       /* 1st argument to callback function */
00396   char **errmsg,                /* Error msg written here */
00397   ...                           /* Arguments to the format string. */
00398 );
00399 int sqlite_exec_vprintf(
00400   sqlite*,                      /* An open database */
00401   const char *sqlFormat,        /* printf-style format string for the SQL */
00402   sqlite_callback,              /* Callback function */
00403   void *,                       /* 1st argument to callback function */
00404   char **errmsg,                /* Error msg written here */
00405   va_list ap                    /* Arguments to the format string. */
00406 );
00407 int sqlite_get_table_printf(
00408   sqlite*,               /* An open database */
00409   const char *sqlFormat, /* printf-style format string for the SQL */
00410   char ***resultp,       /* Result written to a char *[]  that this points to */
00411   int *nrow,             /* Number of result rows written here */
00412   int *ncolumn,          /* Number of result columns written here */
00413   char **errmsg,         /* Error msg written here */
00414   ...                    /* Arguments to the format string */
00415 );
00416 int sqlite_get_table_vprintf(
00417   sqlite*,               /* An open database */
00418   const char *sqlFormat, /* printf-style format string for the SQL */
00419   char ***resultp,       /* Result written to a char *[]  that this points to */
00420   int *nrow,             /* Number of result rows written here */
00421   int *ncolumn,          /* Number of result columns written here */
00422   char **errmsg,         /* Error msg written here */
00423   va_list ap             /* Arguments to the format string */
00424 );
00425 char *sqlite_mprintf(const char*,...);
00426 char *sqlite_vmprintf(const char*, va_list);
00427 
00428 /*
00429 ** Windows systems should call this routine to free memory that
00430 ** is returned in the in the errmsg parameter of sqlite_open() when
00431 ** SQLite is a DLL.  For some reason, it does not work to call free()
00432 ** directly.
00433 */
00434 void sqlite_freemem(void *p);
00435 
00436 /*
00437 ** Windows systems need functions to call to return the sqlite_version
00438 ** and sqlite_encoding strings.
00439 */
00440 const char *sqlite_libversion(void);
00441 const char *sqlite_libencoding(void);
00442 
00443 /*
00444 ** A pointer to the following structure is used to communicate with
00445 ** the implementations of user-defined functions.
00446 */
00447 typedef struct sqlite_func sqlite_func;
00448 
00449 /*
00450 ** Use the following routines to create new user-defined functions.  See
00451 ** the documentation for details.
00452 */
00453 int sqlite_create_function(
00454   sqlite*,                  /* Database where the new function is registered */
00455   const char *zName,        /* Name of the new function */
00456   int nArg,                 /* Number of arguments.  -1 means any number */
00457   void (*xFunc)(sqlite_func*,int,const char**),  /* C code to implement */
00458   void *pUserData           /* Available via the sqlite_user_data() call */
00459 );
00460 int sqlite_create_aggregate(
00461   sqlite*,                  /* Database where the new function is registered */
00462   const char *zName,        /* Name of the function */
00463   int nArg,                 /* Number of arguments */
00464   void (*xStep)(sqlite_func*,int,const char**), /* Called for each row */
00465   void (*xFinalize)(sqlite_func*),       /* Called once to get final result */
00466   void *pUserData           /* Available via the sqlite_user_data() call */
00467 );
00468 
00469 /*
00470 ** Use the following routine to define the datatype returned by a
00471 ** user-defined function.  The second argument can be one of the
00472 ** constants SQLITE_NUMERIC, SQLITE_TEXT, or SQLITE_ARGS or it
00473 ** can be an integer greater than or equal to zero.  When the datatype
00474 ** parameter is non-negative, the type of the result will be the
00475 ** same as the datatype-th argument.  If datatype==SQLITE_NUMERIC
00476 ** then the result is always numeric.  If datatype==SQLITE_TEXT then
00477 ** the result is always text.  If datatype==SQLITE_ARGS then the result
00478 ** is numeric if any argument is numeric and is text otherwise.
00479 */
00480 int sqlite_function_type(
00481   sqlite *db,               /* The database there the function is registered */
00482   const char *zName,        /* Name of the function */
00483   int datatype              /* The datatype for this function */
00484 );
00485 #define SQLITE_NUMERIC     (-1)
00486 #define SQLITE_TEXT        (-2)
00487 #define SQLITE_ARGS        (-3)
00488 
00489 /*
00490 ** The user function implementations call one of the following four routines
00491 ** in order to return their results.  The first parameter to each of these
00492 ** routines is a copy of the first argument to xFunc() or xFinialize().
00493 ** The second parameter to these routines is the result to be returned.
00494 ** A NULL can be passed as the second parameter to sqlite_set_result_string()
00495 ** in order to return a NULL result.
00496 **
00497 ** The 3rd argument to _string and _error is the number of characters to
00498 ** take from the string.  If this argument is negative, then all characters
00499 ** up to and including the first '\000' are used.
00500 **
00501 ** The sqlite_set_result_string() function allocates a buffer to hold the
00502 ** result and returns a pointer to this buffer.  The calling routine
00503 ** (that is, the implementation of a user function) can alter the content
00504 ** of this buffer if desired.
00505 */
00506 char *sqlite_set_result_string(sqlite_func*,const char*,int);
00507 void sqlite_set_result_int(sqlite_func*,int);
00508 void sqlite_set_result_double(sqlite_func*,double);
00509 void sqlite_set_result_error(sqlite_func*,const char*,int);
00510 
00511 /*
00512 ** The pUserData parameter to the sqlite_create_function() and
00513 ** sqlite_create_aggregate() routines used to register user functions
00514 ** is available to the implementation of the function using this
00515 ** call.
00516 */
00517 void *sqlite_user_data(sqlite_func*);
00518 
00519 /*
00520 ** Aggregate functions use the following routine to allocate
00521 ** a structure for storing their state.  The first time this routine
00522 ** is called for a particular aggregate, a new structure of size nBytes
00523 ** is allocated, zeroed, and returned.  On subsequent calls (for the
00524 ** same aggregate instance) the same buffer is returned.  The implementation
00525 ** of the aggregate can use the returned buffer to accumulate data.
00526 **
00527 ** The buffer allocated is freed automatically be SQLite.
00528 */
00529 void *sqlite_aggregate_context(sqlite_func*, int nBytes);
00530 
00531 /*
00532 ** The next routine returns the number of calls to xStep for a particular
00533 ** aggregate function instance.  The current call to xStep counts so this
00534 ** routine always returns at least 1.
00535 */
00536 int sqlite_aggregate_count(sqlite_func*);
00537 
00538 /*
00539 ** This routine registers a callback with the SQLite library.  The
00540 ** callback is invoked (at compile-time, not at run-time) for each
00541 ** attempt to access a column of a table in the database.  The callback
00542 ** returns SQLITE_OK if access is allowed, SQLITE_DENY if the entire
00543 ** SQL statement should be aborted with an error and SQLITE_IGNORE
00544 ** if the column should be treated as a NULL value.
00545 */
00546 int sqlite_set_authorizer(
00547   sqlite*,
00548   int (*xAuth)(void*,int,const char*,const char*,const char*,const char*),
00549   void *pUserData
00550 );
00551 
00552 /*
00553 ** The second parameter to the access authorization function above will
00554 ** be one of the values below.  These values signify what kind of operation
00555 ** is to be authorized.  The 3rd and 4th parameters to the authorization
00556 ** function will be parameters or NULL depending on which of the following
00557 ** codes is used as the second parameter.  The 5th parameter is the name
00558 ** of the database ("main", "temp", etc.) if applicable.  The 6th parameter
00559 ** is the name of the inner-most trigger or view that is responsible for
00560 ** the access attempt or NULL if this access attempt is directly from 
00561 ** input SQL code.
00562 **
00563 **                                          Arg-3           Arg-4
00564 */
00565 #define SQLITE_COPY                  0   /* Table Name      File Name       */
00566 #define SQLITE_CREATE_INDEX          1   /* Index Name      Table Name      */
00567 #define SQLITE_CREATE_TABLE          2   /* Table Name      NULL            */
00568 #define SQLITE_CREATE_TEMP_INDEX     3   /* Index Name      Table Name      */
00569 #define SQLITE_CREATE_TEMP_TABLE     4   /* Table Name      NULL            */
00570 #define SQLITE_CREATE_TEMP_TRIGGER   5   /* Trigger Name    Table Name      */
00571 #define SQLITE_CREATE_TEMP_VIEW      6   /* View Name       NULL            */
00572 #define SQLITE_CREATE_TRIGGER        7   /* Trigger Name    Table Name      */
00573 #define SQLITE_CREATE_VIEW           8   /* View Name       NULL            */
00574 #define SQLITE_DELETE                9   /* Table Name      NULL            */
00575 #define SQLITE_DROP_INDEX           10   /* Index Name      Table Name      */
00576 #define SQLITE_DROP_TABLE           11   /* Table Name      NULL            */
00577 #define SQLITE_DROP_TEMP_INDEX      12   /* Index Name      Table Name      */
00578 #define SQLITE_DROP_TEMP_TABLE      13   /* Table Name      NULL            */
00579 #define SQLITE_DROP_TEMP_TRIGGER    14   /* Trigger Name    Table Name      */
00580 #define SQLITE_DROP_TEMP_VIEW       15   /* View Name       NULL            */
00581 #define SQLITE_DROP_TRIGGER         16   /* Trigger Name    Table Name      */
00582 #define SQLITE_DROP_VIEW            17   /* View Name       NULL            */
00583 #define SQLITE_INSERT               18   /* Table Name      NULL            */
00584 #define SQLITE_PRAGMA               19   /* Pragma Name     1st arg or NULL */
00585 #define SQLITE_READ                 20   /* Table Name      Column Name     */
00586 #define SQLITE_SELECT               21   /* NULL            NULL            */
00587 #define SQLITE_TRANSACTION          22   /* NULL            NULL            */
00588 #define SQLITE_UPDATE               23   /* Table Name      Column Name     */
00589 #define SQLITE_ATTACH               24   /* Filename        NULL            */
00590 #define SQLITE_DETACH               25   /* Database Name   NULL            */
00591 
00592 
00593 /*
00594 ** The return value of the authorization function should be one of the
00595 ** following constants:
00596 */
00597 /* #define SQLITE_OK  0   // Allow access (This is actually defined above) */
00598 #define SQLITE_DENY   1   /* Abort the SQL statement with an error */
00599 #define SQLITE_IGNORE 2   /* Don't allow access, but don't generate an error */
00600 
00601 /*
00602 ** Register a function that is called at every invocation of sqlite_exec()
00603 ** or sqlite_compile().  This function can be used (for example) to generate
00604 ** a log file of all SQL executed against a database.
00605 */
00606 void *sqlite_trace(sqlite*, void(*xTrace)(void*,const char*), void*);
00607 
00608 /*** The Callback-Free API
00609 ** 
00610 ** The following routines implement a new way to access SQLite that does not
00611 ** involve the use of callbacks.
00612 **
00613 ** An sqlite_vm is an opaque object that represents a single SQL statement
00614 ** that is ready to be executed.
00615 */
00616 typedef struct sqlite_vm sqlite_vm;
00617 
00618 /*
00619 ** To execute an SQLite query without the use of callbacks, you first have
00620 ** to compile the SQL using this routine.  The 1st parameter "db" is a pointer
00621 ** to an sqlite object obtained from sqlite_open().  The 2nd parameter
00622 ** "zSql" is the text of the SQL to be compiled.   The remaining parameters
00623 ** are all outputs.
00624 **
00625 ** *pzTail is made to point to the first character past the end of the first
00626 ** SQL statement in zSql.  This routine only compiles the first statement
00627 ** in zSql, so *pzTail is left pointing to what remains uncompiled.
00628 **
00629 ** *ppVm is left pointing to a "virtual machine" that can be used to execute
00630 ** the compiled statement.  Or if there is an error, *ppVm may be set to NULL.
00631 ** If the input text contained no SQL (if the input is and empty string or
00632 ** a comment) then *ppVm is set to NULL.
00633 **
00634 ** If any errors are detected during compilation, an error message is written
00635 ** into space obtained from malloc() and *pzErrMsg is made to point to that
00636 ** error message.  The calling routine is responsible for freeing the text
00637 ** of this message when it has finished with it.  Use sqlite_freemem() to
00638 ** free the message.  pzErrMsg may be NULL in which case no error message
00639 ** will be generated.
00640 **
00641 ** On success, SQLITE_OK is returned.  Otherwise and error code is returned.
00642 */
00643 int sqlite_compile(
00644   sqlite *db,                   /* The open database */
00645   const char *zSql,             /* SQL statement to be compiled */
00646   const char **pzTail,          /* OUT: uncompiled tail of zSql */
00647   sqlite_vm **ppVm,             /* OUT: the virtual machine to execute zSql */
00648   char **pzErrmsg               /* OUT: Error message. */
00649 );
00650 
00651 /*
00652 ** After an SQL statement has been compiled, it is handed to this routine
00653 ** to be executed.  This routine executes the statement as far as it can
00654 ** go then returns.  The return value will be one of SQLITE_DONE,
00655 ** SQLITE_ERROR, SQLITE_BUSY, SQLITE_ROW, or SQLITE_MISUSE.
00656 **
00657 ** SQLITE_DONE means that the execute of the SQL statement is complete
00658 ** an no errors have occurred.  sqlite_step() should not be called again
00659 ** for the same virtual machine.  *pN is set to the number of columns in
00660 ** the result set and *pazColName is set to an array of strings that
00661 ** describe the column names and datatypes.  The name of the i-th column
00662 ** is (*pazColName)[i] and the datatype of the i-th column is
00663 ** (*pazColName)[i+*pN].  *pazValue is set to NULL.
00664 **
00665 ** SQLITE_ERROR means that the virtual machine encountered a run-time
00666 ** error.  sqlite_step() should not be called again for the same
00667 ** virtual machine.  *pN is set to 0 and *pazColName and *pazValue are set
00668 ** to NULL.  Use sqlite_finalize() to obtain the specific error code
00669 ** and the error message text for the error.
00670 **
00671 ** SQLITE_BUSY means that an attempt to open the database failed because
00672 ** another thread or process is holding a lock.  The calling routine
00673 ** can try again to open the database by calling sqlite_step() again.
00674 ** The return code will only be SQLITE_BUSY if no busy handler is registered
00675 ** using the sqlite_busy_handler() or sqlite_busy_timeout() routines.  If
00676 ** a busy handler callback has been registered but returns 0, then this
00677 ** routine will return SQLITE_ERROR and sqltie_finalize() will return
00678 ** SQLITE_BUSY when it is called.
00679 **
00680 ** SQLITE_ROW means that a single row of the result is now available.
00681 ** The data is contained in *pazValue.  The value of the i-th column is
00682 ** (*azValue)[i].  *pN and *pazColName are set as described in SQLITE_DONE.
00683 ** Invoke sqlite_step() again to advance to the next row.
00684 **
00685 ** SQLITE_MISUSE is returned if sqlite_step() is called incorrectly.
00686 ** For example, if you call sqlite_step() after the virtual machine
00687 ** has halted (after a prior call to sqlite_step() has returned SQLITE_DONE)
00688 ** or if you call sqlite_step() with an incorrectly initialized virtual
00689 ** machine or a virtual machine that has been deleted or that is associated
00690 ** with an sqlite structure that has been closed.
00691 */
00692 int sqlite_step(
00693   sqlite_vm *pVm,              /* The virtual machine to execute */
00694   int *pN,                     /* OUT: Number of columns in result */
00695   const char ***pazValue,      /* OUT: Column data */
00696   const char ***pazColName     /* OUT: Column names and datatypes */
00697 );
00698 
00699 /*
00700 ** This routine is called to delete a virtual machine after it has finished
00701 ** executing.  The return value is the result code.  SQLITE_OK is returned
00702 ** if the statement executed successfully and some other value is returned if
00703 ** there was any kind of error.  If an error occurred and pzErrMsg is not
00704 ** NULL, then an error message is written into memory obtained from malloc()
00705 ** and *pzErrMsg is made to point to that error message.  The calling routine
00706 ** should use sqlite_freemem() to delete this message when it has finished
00707 ** with it.
00708 **
00709 ** This routine can be called at any point during the execution of the
00710 ** virtual machine.  If the virtual machine has not completed execution
00711 ** when this routine is called, that is like encountering an error or
00712 ** an interrupt.  (See sqlite_interrupt().)  Incomplete updates may be
00713 ** rolled back and transactions canceled,  depending on the circumstances,
00714 ** and the result code returned will be SQLITE_ABORT.
00715 */
00716 int sqlite_finalize(sqlite_vm*, char **pzErrMsg);
00717 
00718 /*
00719 ** This routine deletes the virtual machine, writes any error message to
00720 ** *pzErrMsg and returns an SQLite return code in the same way as the
00721 ** sqlite_finalize() function.
00722 **
00723 ** Additionally, if ppVm is not NULL, *ppVm is left pointing to a new virtual
00724 ** machine loaded with the compiled version of the original query ready for
00725 ** execution.
00726 **
00727 ** If sqlite_reset() returns SQLITE_SCHEMA, then *ppVm is set to NULL.
00728 **
00729 ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ******
00730 */
00731 int sqlite_reset(sqlite_vm*, char **pzErrMsg);
00732 
00733 /*
00734 ** If the SQL that was handed to sqlite_compile contains variables that
00735 ** are represented in the SQL text by a question mark ('?').  This routine
00736 ** is used to assign values to those variables.
00737 **
00738 ** The first parameter is a virtual machine obtained from sqlite_compile().
00739 ** The 2nd "idx" parameter determines which variable in the SQL statement
00740 ** to bind the value to.  The left most '?' is 1.  The 3rd parameter is
00741 ** the value to assign to that variable.  The 4th parameter is the number
00742 ** of bytes in the value, including the terminating \000 for strings.
00743 ** Finally, the 5th "copy" parameter is TRUE if SQLite should make its
00744 ** own private copy of this value, or false if the space that the 3rd
00745 ** parameter points to will be unchanging and can be used directly by
00746 ** SQLite.
00747 **
00748 ** Unbound variables are treated as having a value of NULL.  To explicitly
00749 ** set a variable to NULL, call this routine with the 3rd parameter as a
00750 ** NULL pointer.
00751 **
00752 ** If the 4th "len" parameter is -1, then strlen() is used to find the
00753 ** length.
00754 **
00755 ** This routine can only be called immediately after sqlite_compile()
00756 ** or sqlite_reset() and before any calls to sqlite_step().
00757 **
00758 ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ******
00759 */
00760 int sqlite_bind(sqlite_vm*, int idx, const char *value, int len, int copy);
00761 
00762 /*
00763 ** This routine configures a callback function - the progress callback - that
00764 ** is invoked periodically during long running calls to sqlite_exec(),
00765 ** sqlite_step() and sqlite_get_table(). An example use for this API is to keep
00766 ** a GUI updated during a large query.
00767 **
00768 ** The progress callback is invoked once for every N virtual machine opcodes,
00769 ** where N is the second argument to this function. The progress callback
00770 ** itself is identified by the third argument to this function. The fourth
00771 ** argument to this function is a void pointer passed to the progress callback
00772 ** function each time it is invoked.
00773 **
00774 ** If a call to sqlite_exec(), sqlite_step() or sqlite_get_table() results 
00775 ** in less than N opcodes being executed, then the progress callback is not
00776 ** invoked.
00777 ** 
00778 ** Calling this routine overwrites any previously installed progress callback.
00779 ** To remove the progress callback altogether, pass NULL as the third
00780 ** argument to this function.
00781 **
00782 ** If the progress callback returns a result other than 0, then the current 
00783 ** query is immediately terminated and any database changes rolled back. If the
00784 ** query was part of a larger transaction, then the transaction is not rolled
00785 ** back and remains active. The sqlite_exec() call returns SQLITE_ABORT. 
00786 **
00787 ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ******
00788 */
00789 void sqlite_progress_handler(sqlite*, int, int(*)(void*), void*);
00790 
00791 /*
00792 ** Register a callback function to be invoked whenever a new transaction
00793 ** is committed.  The pArg argument is passed through to the callback.
00794 ** callback.  If the callback function returns non-zero, then the commit
00795 ** is converted into a rollback.
00796 **
00797 ** If another function was previously registered, its pArg value is returned.
00798 ** Otherwise NULL is returned.
00799 **
00800 ** Registering a NULL function disables the callback.
00801 **
00802 ******* THIS IS AN EXPERIMENTAL API AND IS SUBJECT TO CHANGE ******
00803 */
00804 void *sqlite_commit_hook(sqlite*, int(*)(void*), void*);
00805 
00806 /*
00807 ** Open an encrypted SQLite database.  If pKey==0 or nKey==0, this routine
00808 ** is the same as sqlite_open().
00809 **
00810 ** The code to implement this API is not available in the public release
00811 ** of SQLite.
00812 */
00813 sqlite *sqlite_open_encrypted(
00814   const char *zFilename,   /* Name of the encrypted database */
00815   const void *pKey,        /* Pointer to the key */
00816   int nKey,                /* Number of bytes in the key */
00817   int *pErrcode,           /* Write error code here */
00818   char **pzErrmsg          /* Write error message here */
00819 );
00820 
00821 /*
00822 ** Change the key on an open database.  If the current database is not
00823 ** encrypted, this routine will encrypt it.  If pNew==0 or nNew==0, the
00824 ** database is decrypted.
00825 **
00826 ** The code to implement this API is not available in the public release
00827 ** of SQLite.
00828 */
00829 int sqlite_rekey(
00830   sqlite *db,                    /* Database to be re-keyed */
00831   const void *pKey, int nKey     /* The new key */
00832 );
00833 
00834 /*
00835 ** Encode a binary buffer "in" of size n bytes so that it contains
00836 ** no instances of characters '\'' or '\000'.  The output is 
00837 ** null-terminated and can be used as a string value in an INSERT
00838 ** or UPDATE statement.  Use sqlite_decode_binary() to convert the
00839 ** string back into its original binary.
00840 **
00841 ** The result is written into a preallocated output buffer "out".
00842 ** "out" must be able to hold at least 2 +(257*n)/254 bytes.
00843 ** In other words, the output will be expanded by as much as 3
00844 ** bytes for every 254 bytes of input plus 2 bytes of fixed overhead.
00845 ** (This is approximately 2 + 1.0118*n or about a 1.2% size increase.)
00846 **
00847 ** The return value is the number of characters in the encoded
00848 ** string, excluding the "\000" terminator.
00849 **
00850 ** If out==NULL then no output is generated but the routine still returns
00851 ** the number of characters that would have been generated if out had
00852 ** not been NULL.
00853 */
00854 int sqlite_encode_binary(const unsigned char *in, int n, unsigned char *out);
00855 
00856 /*
00857 ** Decode the string "in" into binary data and write it into "out".
00858 ** This routine reverses the encoding created by sqlite_encode_binary().
00859 ** The output will always be a few bytes less than the input.  The number
00860 ** of bytes of output is returned.  If the input is not a well-formed
00861 ** encoding, -1 is returned.
00862 **
00863 ** The "in" and "out" parameters may point to the same buffer in order
00864 ** to decode a string in place.
00865 */
00866 int sqlite_decode_binary(const unsigned char *in, unsigned char *out);
00867 
00868 #ifdef __cplusplus
00869 }  /* End of the 'extern "C"' block */
00870 #endif
00871 
00872 #endif /* _SQLITE_H_ */

digikam

Skip menu "digikam"
  • Main Page
  • Namespace List
  • Class Hierarchy
  • Alphabetical List
  • Class List
  • File List
  • Namespace Members
  • Class Members