Searched defs:sqlite3_api_routines (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3ext.h | 32 struct sqlite3_api_routines { struct 33 void * (*aggregate_context)(sqlite3_context*,int nBytes); 34 int (*aggregate_count)(sqlite3_context*); 35 int (*bind_blob)(sqlite3_stmt*,int,const void*,int n,void(*)(void*)); 36 int (*bind_double)(sqlite3_stmt*,int,double); 37 int (*bind_int)(sqlite3_stmt*,int,int); 38 int (*bind_int64)(sqlite3_stmt*,int,sqlite_int64); 39 int (*bind_null)(sqlite3_stmt*,int); 40 int (*bind_parameter_count)(sqlite3_stmt*); 41 int (*bind_parameter_index)(sqlite3_stmt*,const char*zName); [all …]
|
H A D | sqlite3.h | 1274 typedef struct sqlite3_api_routines sqlite3_api_routines; typedef
|
H A D | sqlite3.c | 1587 typedef struct sqlite3_api_routines sqlite3_api_routines; typedef
|