Lines Matching refs:sql
742 const char *sql, /* SQL to be evaluated */
3109 SQLITE_API int sqlite3_complete(const char *sql);
3110 SQLITE_API int sqlite3_complete16(const void *sql);
136509 int (*complete)(const char*sql);
136510 int (*complete16)(const void*sql);
136640 const char *(*sql)(sqlite3_stmt*);
136990 #define sqlite3_sql sqlite3_api->sql
226362 SessionBuffer sql = {0,0,0};
226368 sessionAppendPrintf(&sql, &rc, "SELECT");
226371 sessionAppendPrintf(&sql, &rc, "%s%s", zSep, zDflt);
226375 rc = sqlite3_prepare_v2(db, (const char*)sql.aBuf, -1, ppStmt, 0);
226377 sqlite3_free(sql.aBuf);