Home
last modified time | relevance | path

Searched refs:sqlite3_column_type (Results 1 – 10 of 10) sorted by relevance

/NextBSD/crypto/heimdal/lib/krb5/
HDscache.c273 if (sqlite3_column_type(stmt, 0) != SQLITE_TEXT) in get_def_name()
517 if (sqlite3_column_type(s->scache_name, 0) != SQLITE_INTEGER) { in scc_resolve()
841 if (sqlite3_column_type(s->scache, 0) != SQLITE_TEXT) { in scc_get_principal()
1015 if (sqlite3_column_type(ctx->credstmt, 0) != SQLITE_BLOB) { in scc_get_next()
1091 if (sqlite3_column_type(stmt, 0) != SQLITE_BLOB) { in scc_remove_cred()
1266 if (sqlite3_column_type(ctx->stmt, 0) != SQLITE_TEXT) in scc_get_cache_next()
/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3ext.h272 #define sqlite3_column_type sqlite3_api->column_type macro
HDsqlite3.h3563 SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol);
HDsqlite3.c4116 SQLITE_API int sqlite3_column_type(sqlite3_stmt*, int iCol);
62366 SQLITE_API int sqlite3_column_type(sqlite3_stmt *pStmt, int i){
78269 int eType = sqlite3_column_type(pStmt, 2);
88818 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){
89164 #define sqlite3_column_type sqlite3_api->column_type
89474 sqlite3_column_type,
120344 if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB ){
121897 if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB ){
122601 if( rc!=SQLITE_ROW || sqlite3_column_type(pStmt, 0)!=SQLITE_BLOB ){
126153 if( sqlite3_column_type(pCsr->pStmt, iCol)!=SQLITE_NULL ){
[all …]
/NextBSD/contrib/sqlite3/
HDsqlite3ext.h329 #define sqlite3_column_type sqlite3_api->column_type macro
HDsqlite3.h4068 SQLITE_API int SQLITE_STDCALL sqlite3_column_type(sqlite3_stmt*, int iCol);
HDshell.c1575 aiTypes[i] = x = sqlite3_column_type(pStmt, i); in shell_exec()
2328 switch( sqlite3_column_type(pQuery, i) ){ in tryToCloneData()
HDsqlite3.c4282 SQLITE_API int SQLITE_STDCALL sqlite3_column_type(sqlite3_stmt*, int iCol);
71186 SQLITE_API int SQLITE_STDCALL sqlite3_column_type(sqlite3_stmt *pStmt, int i){
102911 if( !azVals[i] && sqlite3_column_type(pStmt, i)!=SQLITE_NULL ){
103315 #define sqlite3_column_type sqlite3_api->column_type
103669 sqlite3_column_type,
142030 if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB ){
143633 if( sqlite3_column_type(pStmt, 0)==SQLITE_BLOB ){
144892 if( rc!=SQLITE_ROW || sqlite3_column_type(pStmt, 0)!=SQLITE_BLOB ){
144915 || sqlite3_column_type(pStmt, 0)!=SQLITE_BLOB
146918 *pbMax = sqlite3_column_type(pStmt, 0)==SQLITE_NULL;
[all …]
/NextBSD/contrib/apr-util/dbd/
HDapr_dbd_sqlite3.c136 column->type = sqlite3_column_type(stmt, i); in dbd_sqlite3_select_internal()
/NextBSD/contrib/subversion/subversion/libsvn_subr/
HDsqlite.c738 return sqlite3_column_type(stmt->s3stmt, column) == SQLITE_NULL; in svn_sqlite__column_is_null()