Searched refs:sqlite3_stmt (Results 1 - 10 of 10) sorted by relevance

/external/sqlite/dist/orig/
H A Dsqlite3ext.h37 int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));
38 int (*bind_double)(sqlite3_stmt*,int,double);
39 int (*bind_int)(sqlite3_stmt*,int,int);
40 int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);
41 int (*bind_null)(sqlite3_stmt*,int);
42 int (*bind_parameter_count)(sqlite3_stmt*);
43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
44 const char * (*bind_parameter_name)(sqlite3_stmt*,int);
45 int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));
46 int (*bind_text16)(sqlite3_stmt*,in
[all...]
H A Dsqlite3.h3095 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt
3212 ** CONSTRUCTOR: sqlite3_stmt
3255 ** that is returned (the [sqlite3_stmt] object) contains a copy of the
3293 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3300 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3307 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3314 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3320 ** METHOD: sqlite3_stmt
3326 SQLITE_API const char *SQLITE_STDCALL sqlite3_sql(sqlite3_stmt *pStm
[all...]
H A Dsqlite3.c3302 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt
3419 ** CONSTRUCTOR: sqlite3_stmt
3462 ** that is returned (the [sqlite3_stmt] object) contains a copy of the
3500 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3507 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3514 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3521 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3527 ** METHOD: sqlite3_stmt
3533 SQLITE_API const char *SQLITE_STDCALL sqlite3_sql(sqlite3_stmt *pStm
[all...]
H A Dshell.c552 sqlite3_stmt *pStmt; /* Current statement if any. */
1156 sqlite3_stmt *pSelect;
1341 sqlite3_stmt *p = pArg->pStmt;
1404 static void explain_data_prepare(ShellState *p, sqlite3_stmt *pSql){
1489 sqlite3_stmt *pStmt = NULL; /* Statement to execute. */
1526 sqlite3_stmt *pExplain;
1684 sqlite3_stmt *pTableInfo = 0;
2282 sqlite3_stmt *pQuery = 0;
2283 sqlite3_stmt *pInsert = 0;
2396 sqlite3_stmt *pQuer
[all...]
/external/sqlite/dist/
H A Dsqlite3ext.h37 int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*));
38 int (*bind_double)(sqlite3_stmt*,int,double);
39 int (*bind_int)(sqlite3_stmt*,int,int);
40 int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64);
41 int (*bind_null)(sqlite3_stmt*,int);
42 int (*bind_parameter_count)(sqlite3_stmt*);
43 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName);
44 const char * (*bind_parameter_name)(sqlite3_stmt*,int);
45 int (*bind_text)(sqlite3_stmt*,int,const char*,int n,void(*)(void*));
46 int (*bind_text16)(sqlite3_stmt*,in
[all...]
H A Dsqlite3.h3095 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt
3212 ** CONSTRUCTOR: sqlite3_stmt
3255 ** that is returned (the [sqlite3_stmt] object) contains a copy of the
3293 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3300 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3307 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3314 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3320 ** METHOD: sqlite3_stmt
3326 SQLITE_API const char *SQLITE_STDCALL sqlite3_sql(sqlite3_stmt *pStm
[all...]
H A Dsqlite3.c3302 typedef struct sqlite3_stmt sqlite3_stmt; typedef in typeref:struct:sqlite3_stmt
3419 ** CONSTRUCTOR: sqlite3_stmt
3462 ** that is returned (the [sqlite3_stmt] object) contains a copy of the
3500 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3507 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3514 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3521 sqlite3_stmt **ppStmt, /* OUT: Statement handle */
3527 ** METHOD: sqlite3_stmt
3533 SQLITE_API const char *SQLITE_STDCALL sqlite3_sql(sqlite3_stmt *pStm
[all...]
H A Dshell.c558 sqlite3_stmt *pStmt; /* Current statement if any. */
1162 sqlite3_stmt *pSelect;
1347 sqlite3_stmt *p = pArg->pStmt;
1410 static void explain_data_prepare(ShellState *p, sqlite3_stmt *pSql){
1495 sqlite3_stmt *pStmt = NULL; /* Statement to execute. */
1532 sqlite3_stmt *pExplain;
1690 sqlite3_stmt *pTableInfo = 0;
2304 sqlite3_stmt *pQuery = 0;
2305 sqlite3_stmt *pInsert = 0;
2418 sqlite3_stmt *pQuer
[all...]
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c71 sqlite3_stmt *stmt; /* For callback() */
795 sqlite3_finalize((sqlite3_stmt *) v->vm);
804 sqlite3_finalize((sqlite3_stmt *) v->vm);
2483 sqlite3_finalize((sqlite3_stmt *) v->vm);
2492 sqlite3_finalize((sqlite3_stmt *) v->vm);
2530 sqlite3_finalize((sqlite3_stmt *) v->vm);
2634 ret = sqlite3_step((sqlite3_stmt *) v->vm);
2636 ncol = sqlite3_column_count((sqlite3_stmt *) v->vm);
2654 sqlite3_column_name((sqlite3_stmt *) v->vm, i);
2658 ncol = sqlite3_data_count((sqlite3_stmt *)
[all...]
/external/sqlite/android/
H A Dsqlite3_android.cpp210 sqlite3_stmt * statement = (sqlite3_stmt *)data;
289 sqlite3_stmt * statement = (sqlite3_stmt *)sqlite3_get_auxdata(context, 0);

Completed in 1043 milliseconds