Lines Matching refs:sql
748 const char *sql, /* SQL to be evaluated */
3257 SQLITE_API int sqlite3_complete(const char *sql);
3258 SQLITE_API int sqlite3_complete16(const void *sql);
138447 int (*complete)(const char*sql);
138448 int (*complete16)(const void*sql);
138578 const char *(*sql)(sqlite3_stmt*);
138930 #define sqlite3_sql sqlite3_api->sql
229639 SessionBuffer sql = {0,0,0};
229645 sessionAppendPrintf(&sql, &rc, "SELECT");
229648 sessionAppendPrintf(&sql, &rc, "%s%s", zSep, zDflt);
229652 rc = sqlite3_prepare_v2(db, (const char*)sql.aBuf, -1, ppStmt, 0);
229654 sqlite3_free(sql.aBuf);