blob: 8d96b1e58bdb191318ea12ef1c68d141ad6216ff [file] [log] [blame]
danielk197798d30672004-05-26 00:01:35 +00001/*
2** 2001 September 15
3**
4** The author disclaims copyright to this source code. In place of
5** a legal notice, here is a blessing:
6**
7** May you do good and not evil.
8** May you find forgiveness for yourself and forgive others.
9** May you share freely, never taking more than you give.
10**
11*************************************************************************
12** 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.
16**
drh5bb3eb92007-05-04 13:15:55 +000017** $Id: legacy.c,v 1.18 2007/05/04 13:15:56 drh Exp $
danielk197798d30672004-05-26 00:01:35 +000018*/
19
20#include "sqliteInt.h"
21#include "os.h"
22#include <ctype.h>
23
24/*
25** Execute SQL code. Return one of the SQLITE_ success/failure
26** codes. Also write an error message into memory obtained from
27** malloc() and make *pzErrMsg point to that message.
28**
29** If the SQL is a query, then for each row in the query result
30** the xCallback() function is called. pArg becomes the first
31** argument to xCallback(). If xCallback=NULL then no callback
32** is invoked, even for queries.
33*/
34int sqlite3_exec(
drh9bb575f2004-09-06 17:24:11 +000035 sqlite3 *db, /* The database on which the SQL executes */
danielk197798d30672004-05-26 00:01:35 +000036 const char *zSql, /* The SQL to be executed */
drh12057d52004-09-06 17:34:12 +000037 sqlite3_callback xCallback, /* Invoke this callback routine */
danielk197798d30672004-05-26 00:01:35 +000038 void *pArg, /* First argument to xCallback() */
39 char **pzErrMsg /* Write error messages here */
40){
41 int rc = SQLITE_OK;
42 const char *zLeftover;
43 sqlite3_stmt *pStmt = 0;
44 char **azCols = 0;
45
46 int nRetry = 0;
danielk197798d30672004-05-26 00:01:35 +000047 int nCallback;
48
49 if( zSql==0 ) return SQLITE_OK;
50 while( (rc==SQLITE_OK || (rc==SQLITE_SCHEMA && (++nRetry)<2)) && zSql[0] ){
51 int nCol;
52 char **azVals = 0;
53
54 pStmt = 0;
55 rc = sqlite3_prepare(db, zSql, -1, &pStmt, &zLeftover);
drh43617e92006-03-06 20:55:46 +000056 assert( rc==SQLITE_OK || pStmt==0 );
danielk197798d30672004-05-26 00:01:35 +000057 if( rc!=SQLITE_OK ){
danielk197798d30672004-05-26 00:01:35 +000058 continue;
59 }
60 if( !pStmt ){
61 /* this happens for a comment or white-space */
62 zSql = zLeftover;
63 continue;
64 }
65
danielk197798d30672004-05-26 00:01:35 +000066 nCallback = 0;
67
68 nCol = sqlite3_column_count(pStmt);
drh158ff672006-01-23 13:14:55 +000069 azCols = sqliteMalloc(2*nCol*sizeof(const char *) + 1);
70 if( azCols==0 ){
danielk197798d30672004-05-26 00:01:35 +000071 goto exec_out;
72 }
73
74 while( 1 ){
75 int i;
76 rc = sqlite3_step(pStmt);
77
78 /* Invoke the callback function if required */
79 if( xCallback && (SQLITE_ROW==rc ||
80 (SQLITE_DONE==rc && !nCallback && db->flags&SQLITE_NullCallback)) ){
81 if( 0==nCallback ){
82 for(i=0; i<nCol; i++){
83 azCols[i] = (char *)sqlite3_column_name(pStmt, i);
84 }
85 nCallback++;
86 }
87 if( rc==SQLITE_ROW ){
88 azVals = &azCols[nCol];
89 for(i=0; i<nCol; i++){
drh4f26d6c2004-05-26 23:25:30 +000090 azVals[i] = (char *)sqlite3_column_text(pStmt, i);
danielk197798d30672004-05-26 00:01:35 +000091 }
92 }
93 if( xCallback(pArg, nCol, azVals, azCols) ){
94 rc = SQLITE_ABORT;
95 goto exec_out;
96 }
97 }
98
99 if( rc!=SQLITE_ROW ){
danielk1977fc57d7b2004-05-26 02:04:57 +0000100 rc = sqlite3_finalize(pStmt);
danielk197798d30672004-05-26 00:01:35 +0000101 pStmt = 0;
danielk197798d30672004-05-26 00:01:35 +0000102 if( rc!=SQLITE_SCHEMA ){
103 nRetry = 0;
104 zSql = zLeftover;
drh4c755c02004-08-08 20:22:17 +0000105 while( isspace((unsigned char)zSql[0]) ) zSql++;
danielk197798d30672004-05-26 00:01:35 +0000106 }
107 break;
108 }
109 }
110
111 sqliteFree(azCols);
112 azCols = 0;
113 }
114
115exec_out:
danielk1977fc57d7b2004-05-26 02:04:57 +0000116 if( pStmt ) sqlite3_finalize(pStmt);
danielk197798d30672004-05-26 00:01:35 +0000117 if( azCols ) sqliteFree(azCols);
118
danielk197754f01982006-01-18 15:25:17 +0000119 rc = sqlite3ApiExit(0, rc);
danielk197798d30672004-05-26 00:01:35 +0000120 if( rc!=SQLITE_OK && rc==sqlite3_errcode(db) && pzErrMsg ){
drh5bb3eb92007-05-04 13:15:55 +0000121 int nErrMsg = 1 + strlen(sqlite3_errmsg(db));
122 *pzErrMsg = sqlite3_malloc(nErrMsg);
danielk197798d30672004-05-26 00:01:35 +0000123 if( *pzErrMsg ){
drh5bb3eb92007-05-04 13:15:55 +0000124 memcpy(*pzErrMsg, sqlite3_errmsg(db), nErrMsg);
danielk197798d30672004-05-26 00:01:35 +0000125 }
126 }else if( pzErrMsg ){
127 *pzErrMsg = 0;
128 }
129
drh4ac285a2006-09-15 07:28:50 +0000130 assert( (rc&db->errMask)==rc );
danielk197798d30672004-05-26 00:01:35 +0000131 return rc;
132}