2 * Jim - Sqlite bindings
4 * Copyright 2005 Salvatore Sanfilippo <antirez@invece.org>
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following
14 * disclaimer in the documentation and/or other materials
15 * provided with the distribution.
17 * THIS SOFTWARE IS PROVIDED BY THE JIM TCL PROJECT ``AS IS'' AND ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
19 * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
20 * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
21 * JIM TCL PROJECT OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
22 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
23 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
26 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
28 * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 * The views and conclusions contained in the software and documentation
31 * are those of the authors and should not be interpreted as representing
32 * official policies, either expressed or implied, of the Jim Tcl Project.
41 static void JimSqliteDelProc(Jim_Interp
*interp
, void *privData
)
43 sqlite3
*db
= privData
;
50 static char *JimSqliteQuoteString(const char *str
, int len
, int *newLenPtr
)
56 for (i
= 0; i
< len
; i
++)
61 d
= buf
= Jim_Alloc(newLen
);
71 static Jim_Obj
*JimSqliteFormatQuery(Jim_Interp
*interp
, Jim_Obj
*fmtObjPtr
,
72 int objc
, Jim_Obj
*const *objv
)
78 fmt
= Jim_GetString(fmtObjPtr
, &fmtLen
);
79 resObjPtr
= Jim_NewStringObj(interp
, "", 0);
84 while (*fmt
!= '%' && fmtLen
) {
88 Jim_AppendString(interp
, resObjPtr
, p
, fmt
- p
);
92 fmtLen
--; /* skip '%' */
95 Jim_FreeNewObj(interp
, resObjPtr
);
96 Jim_SetResultString(interp
, "not enough arguments for all format specifiers", -1);
110 str
= Jim_GetString(objv
[0], &len
);
111 quoted
= JimSqliteQuoteString(str
, len
, &newLen
);
112 Jim_AppendString(interp
, resObjPtr
, quoted
, newLen
);
118 Jim_AppendString(interp
, resObjPtr
, "%", 1);
123 Jim_FreeNewObj(interp
, resObjPtr
);
124 Jim_SetResultFormatted(interp
,
125 "bad field specifier \"%s\", only %%s and %%%% are valid", spec
);
134 /* Calls to [sqlite.open] create commands that are implemented by this
136 static int JimSqliteHandlerCommand(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
138 sqlite3
*db
= Jim_CmdPrivData(interp
);
140 static const char * const options
[] = {
141 "close", "query", "lastid", "changes", NULL
144 { OPT_CLOSE
, OPT_QUERY
, OPT_LASTID
, OPT_CHANGES
};
147 Jim_WrongNumArgs(interp
, 1, argv
, "method ?args ...?");
150 if (Jim_GetEnum(interp
, argv
[1], options
, &option
, "Sqlite method", JIM_ERRMSG
) != JIM_OK
)
153 if (option
== OPT_CLOSE
) {
155 Jim_WrongNumArgs(interp
, 2, argv
, "");
158 Jim_DeleteCommand(interp
, Jim_String(argv
[0]));
161 else if (option
== OPT_QUERY
) {
163 Jim_Obj
*objPtr
, *rowsListPtr
;
165 const char *query
, *tail
;
166 int columns
, rows
, len
;
167 int retcode
= JIM_ERR
;
170 if (argc
>= 4 && Jim_CompareStringImmediate(interp
, argv
[2], "-null")) {
171 nullStrObj
= argv
[3];
176 nullStrObj
= Jim_NewEmptyStringObj(interp
);
178 Jim_IncrRefCount(nullStrObj
);
180 Jim_WrongNumArgs(interp
, 2, argv
, "?args?");
183 objPtr
= JimSqliteFormatQuery(interp
, argv
[2], argc
- 3, argv
+ 3);
184 if (objPtr
== NULL
) {
187 query
= Jim_GetString(objPtr
, &len
);
188 Jim_IncrRefCount(objPtr
);
189 /* Compile the query into VM code */
190 if (sqlite3_prepare_v2(db
, query
, len
, &stmt
, &tail
) != SQLITE_OK
) {
191 Jim_DecrRefCount(interp
, objPtr
);
192 Jim_SetResultString(interp
, sqlite3_errmsg(db
), -1);
195 Jim_DecrRefCount(interp
, objPtr
); /* query no longer needed. */
196 /* Build a list of rows (that are lists in turn) */
197 rowsListPtr
= Jim_NewListObj(interp
, NULL
, 0);
198 Jim_IncrRefCount(rowsListPtr
);
200 columns
= sqlite3_column_count(stmt
);
201 while (sqlite3_step(stmt
) == SQLITE_ROW
) {
204 objPtr
= Jim_NewListObj(interp
, NULL
, 0);
205 for (i
= 0; i
< columns
; i
++) {
206 Jim_Obj
*vObj
= NULL
;
208 Jim_ListAppendElement(interp
, objPtr
,
209 Jim_NewStringObj(interp
, sqlite3_column_name(stmt
, i
), -1));
210 switch (sqlite3_column_type(stmt
, i
)) {
215 vObj
= Jim_NewIntObj(interp
, sqlite3_column_int(stmt
, i
));
218 vObj
= Jim_NewDoubleObj(interp
, sqlite3_column_double(stmt
, i
));
222 vObj
= Jim_NewStringObj(interp
,
223 sqlite3_column_blob(stmt
, i
), sqlite3_column_bytes(stmt
, i
));
226 Jim_ListAppendElement(interp
, objPtr
, vObj
);
228 Jim_ListAppendElement(interp
, rowsListPtr
, objPtr
);
232 if (sqlite3_finalize(stmt
) != SQLITE_OK
) {
233 Jim_SetResultString(interp
, sqlite3_errmsg(db
), -1);
236 Jim_SetResult(interp
, rowsListPtr
);
239 Jim_DecrRefCount(interp
, rowsListPtr
);
241 Jim_DecrRefCount(interp
, nullStrObj
);
245 else if (option
== OPT_LASTID
) {
247 Jim_WrongNumArgs(interp
, 2, argv
, "");
250 Jim_SetResult(interp
, Jim_NewIntObj(interp
, sqlite3_last_insert_rowid(db
)));
253 else if (option
== OPT_CHANGES
) {
255 Jim_WrongNumArgs(interp
, 2, argv
, "");
258 Jim_SetResult(interp
, Jim_NewIntObj(interp
, sqlite3_changes(db
)));
264 static int JimSqliteOpenCommand(Jim_Interp
*interp
, int argc
, Jim_Obj
*const *argv
)
271 Jim_WrongNumArgs(interp
, 1, argv
, "dbname");
274 r
= sqlite3_open(Jim_String(argv
[1]), &db
);
275 if (r
!= SQLITE_OK
) {
276 Jim_SetResultString(interp
, sqlite3_errmsg(db
), -1);
280 /* Create the file command */
281 snprintf(buf
, sizeof(buf
), "sqlite.handle%ld", Jim_GetId(interp
));
282 Jim_CreateCommand(interp
, buf
, JimSqliteHandlerCommand
, db
, JimSqliteDelProc
);
284 Jim_SetResult(interp
, Jim_MakeGlobalNamespaceName(interp
, Jim_NewStringObj(interp
, buf
, -1)));
289 int Jim_sqlite3Init(Jim_Interp
*interp
)
291 if (Jim_PackageProvide(interp
, "sqlite3", "1.0", JIM_ERRMSG
))
294 Jim_CreateCommand(interp
, "sqlite3.open", JimSqliteOpenCommand
, NULL
, NULL
);