Lines Matching refs:sqlite3_data_count
5119 ** See also: [sqlite3_data_count()]
5323 ** ^The sqlite3_data_count(P) interface returns the number of columns in the
5327 ** interfaces) then sqlite3_data_count(P) returns 0.
5328 ** ^The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer.
5329 ** ^The sqlite3_data_count(P) routine returns 0 if the previous call to
5330 ** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P)
5338 SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt);
91635 SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt){
136877 #define sqlite3_data_count sqlite3_api->data_count
137322 sqlite3_data_count,
189641 if( rc==SQLITE_OK && sqlite3_data_count(pCsr->pStmt)-1>iCol ){
191870 assert( sqlite3_data_count(pCsr->pStmt)==0 );
192037 assert( sqlite3_data_count(pCsr->pStmt)==0 );
203368 assert( sqlite3_data_count(pStmt)==1 );