Searched refs:sqlite3_column_type (Results 1 - 25 of 28) sorted by relevance

12

/external/chromium_org/third_party/sqlite/src/src/
H A Dlegacy.c93 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){
H A Dloadext.c170 sqlite3_column_type,
H A Danalyze.c664 int eType = sqlite3_column_type(pStmt, 2);
H A Dsqlite3ext.h269 #define sqlite3_column_type sqlite3_api->column_type macro
H A Dsqlite.h.in3231 ** ^The sqlite3_column_type() routine returns the
3235 ** returned by sqlite3_column_type() is only meaningful if no type
3237 ** the value returned by sqlite3_column_type() is undefined. Future
3238 ** versions of SQLite may change the behavior of sqlite3_column_type()
3374 int sqlite3_column_type(sqlite3_stmt*, int iCol);
H A Dvdbeapi.c814 int sqlite3_column_type(sqlite3_stmt *pStmt, int i){ function
H A Drecover.c555 if( sqlite3_column_type(pStmt, 0)==SQLITE_TEXT ){
H A Dtclsqlite.c1434 switch( sqlite3_column_type(pStmt, iCol) ){
H A Dtest1.c3949 ** Usage: sqlite3_column_type STMT column
3972 tp = sqlite3_column_type(pStmt, col);
5606 { "sqlite3_column_type", test_column_type ,0 },
/external/chromium_org/sql/
H A Dstatement.cc180 return static_cast<ColType>(sqlite3_column_type(ref_->stmt(), col));
/external/chromium_org/third_party/sqlite/src/ext/fts2/
H A Dfts2_tokenizer.c262 if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB ){
H A Dfts2.c2258 if( sqlite3_column_type(s, i)==SQLITE_NULL ){
2367 if( SQLITE_NULL==sqlite3_column_type(s, 0) ){
2438 if( SQLITE_NULL==sqlite3_column_type(s, 0) ){
5365 if( sqlite3_column_type(s, 0)!=SQLITE_BLOB ){
5415 if( sqlite3_column_type(pReader->pStmt, 0)!=SQLITE_BLOB ){
5496 if( sqlite3_column_type(s, 0)!=SQLITE_INTEGER ||
5497 sqlite3_column_type(s, 1)!=SQLITE_INTEGER ||
5498 sqlite3_column_type(s, 2)!=SQLITE_BLOB ||
5936 if( sqlite3_column_type(s, 0)!=SQLITE_BLOB ){
6101 if( sqlite3_column_type(
[all...]
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_expr.c779 if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB ){
H A Dfts3_snippet.c676 if( sqlite3_column_type(pCsr->pStmt, iCol)!=SQLITE_NULL ){
1510 if( sqlite3_column_type(pCsr->pStmt, iCol+1)==SQLITE_NULL ){
H A Dfts3_write.c292 if( rc!=SQLITE_ROW || sqlite3_column_type(pStmt, 0)!=SQLITE_BLOB ){
/external/sqlite/dist/orig/
H A Dsqlite3ext.h307 #define sqlite3_column_type sqlite3_api->column_type macro
H A Dsqlite3.h3776 ** ^The sqlite3_column_type() routine returns the
3780 ** returned by sqlite3_column_type() is only meaningful if no type
3782 ** the value returned by sqlite3_column_type() is undefined. Future
3783 ** versions of SQLite may change the behavior of sqlite3_column_type()
3919 SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol);
H A Dshell.c1383 aiTypes[i] = x = sqlite3_column_type(pStmt, i);
2064 switch( sqlite3_column_type(pQuery, i) ){
/external/sqlite/dist/
H A Dsqlite3ext.h307 #define sqlite3_column_type sqlite3_api->column_type macro
H A Dsqlite3.h3776 ** ^The sqlite3_column_type() routine returns the
3780 ** returned by sqlite3_column_type() is only meaningful if no type
3782 ** the value returned by sqlite3_column_type() is undefined. Future
3783 ** versions of SQLite may change the behavior of sqlite3_column_type()
3919 SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol);
H A Dshell.c1388 aiTypes[i] = x = sqlite3_column_type(pStmt, i);
2084 switch( sqlite3_column_type(pQuery, i) ){
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.h3236 ** ^The sqlite3_column_type() routine returns the
3240 ** returned by sqlite3_column_type() is only meaningful if no type
3242 ** the value returned by sqlite3_column_type() is undefined. Future
3243 ** versions of SQLite may change the behavior of sqlite3_column_type()
3379 SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol);
/external/javasqlite/src/main/native/
H A Dsqlite_jni.c576 switch (sqlite3_column_type(h->stmt, i)) {
694 switch (sqlite3_column_type(h->stmt, i)) {
2677 if (sqlite3_column_type((sqlite3_stmt *) v->vm, i)
2763 if (sqlite3_column_type((sqlite3_stmt *) v->vm, i)
4193 return sqlite3_column_type((sqlite3_stmt *) v->vm, col);
/external/chromium_org/third_party/sqlite/src/ext/fts1/
H A Dfulltext.c765 switch( sqlite3_column_type(s, 0) ){
H A Dfts1.c1318 if( sqlite3_column_type(s, i)==SQLITE_NULL ){

Completed in 366 milliseconds

12