Update contrib.
4 ** The author disclaims copyright to this source code. In place of
5 ** a legal notice, here is a blessing:
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.
11 *************************************************************************
12 ** Main file for the SQLite library. The routines in this file
13 ** implement the programmer interface to the library. Routines in
14 ** other files are for internal use by SQLite and should not be
15 ** accessed by users of the library.
17 ** $Id: legacy.c,v 1.29 2008/08/02 03:50:39 drh Exp $
20 #include "sqliteInt.h"
24 ** Execute SQL code. Return one of the SQLITE_ success/failure
25 ** codes. Also write an error message into memory obtained from
26 ** malloc() and make *pzErrMsg point to that message.
28 ** If the SQL is a query, then for each row in the query result
29 ** the xCallback() function is called. pArg becomes the first
30 ** argument to xCallback(). If xCallback=NULL then no callback
31 ** is invoked, even for queries.
33 SQLITE_EXPORT int sqlite3_exec(
34 sqlite3 *db, /* The database on which the SQL executes */
35 const char *zSql, /* The SQL to be executed */
36 sqlite3_callback xCallback, /* Invoke this callback routine */
37 void *pArg, /* First argument to xCallback() */
38 char **pzErrMsg /* Write error messages here */
41 const char *zLeftover;
42 sqlite3_stmt *pStmt = 0;
48 if( zSql==0 ) zSql = "";
50 sqlite3_mutex_enter(db->mutex);
51 sqlite3Error(db, SQLITE_OK, 0);
52 while( (rc==SQLITE_OK || (rc==SQLITE_SCHEMA && (++nRetry)<2)) && zSql[0] ){
57 rc = sqlite3_prepare(db, zSql, -1, &pStmt, &zLeftover);
58 assert( rc==SQLITE_OK || pStmt==0 );
63 /* this happens for a comment or white-space */
69 nCol = sqlite3_column_count(pStmt);
73 rc = sqlite3_step(pStmt);
75 /* Invoke the callback function if required */
76 if( xCallback && (SQLITE_ROW==rc ||
77 (SQLITE_DONE==rc && !nCallback && db->flags&SQLITE_NullCallback)) ){
80 azCols = sqlite3DbMallocZero(db, 2*nCol*sizeof(const char*) + 1);
85 for(i=0; i<nCol; i++){
86 azCols[i] = (char *)sqlite3_column_name(pStmt, i);
87 /* sqlite3VdbeSetColName() installs column names as UTF8
88 ** strings so there is no way for sqlite3_column_name() to fail. */
89 assert( azCols[i]!=0 );
94 azVals = &azCols[nCol];
95 for(i=0; i<nCol; i++){
96 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
97 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){
103 if( xCallback(pArg, nCol, azVals, azCols) ){
105 sqlite3_finalize(pStmt);
107 sqlite3Error(db, SQLITE_ABORT, 0);
112 if( rc!=SQLITE_ROW ){
113 rc = sqlite3_finalize(pStmt);
115 if( rc!=SQLITE_SCHEMA ){
118 while( isspace((unsigned char)zSql[0]) ) zSql++;
124 sqlite3DbFree(db, azCols);
129 if( pStmt ) sqlite3_finalize(pStmt);
130 sqlite3DbFree(db, azCols);
132 rc = sqlite3ApiExit(db, rc);
133 if( rc!=SQLITE_OK && rc==sqlite3_errcode(db) && pzErrMsg ){
134 int nErrMsg = 1 + strlen(sqlite3_errmsg(db));
135 *pzErrMsg = sqlite3Malloc(nErrMsg);
137 memcpy(*pzErrMsg, sqlite3_errmsg(db), nErrMsg);
139 }else if( pzErrMsg ){
143 assert( (rc&db->errMask)==rc );
144 sqlite3_mutex_leave(db->mutex);