Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3_data_count

3826 ** See also: [sqlite3_data_count()]
4025 ** ^The sqlite3_data_count(P) interface returns the number of columns in the
4029 ** interfaces) then sqlite3_data_count(P) returns 0.
4030 ** ^The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer.
4031 ** ^The sqlite3_data_count(P) routine returns 0 if the previous call to
4032 ** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P)
4040 SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt);
63453 SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt){
91313 #define sqlite3_data_count sqlite3_api->data_count
91622 sqlite3_data_count,
119747 }else if( sqlite3_data_count(pCsr->pStmt)>(iCol+1) ){
121514 assert( sqlite3_data_count(pCsr->pStmt)==0 );
121656 assert( sqlite3_data_count(pCsr->pStmt)==0 );
129505 assert( sqlite3_data_count(pStmt)==1 );