Lines Matching refs:sqlite3_data_count
4984 ** See also: [sqlite3_data_count()]
5191 ** ^The sqlite3_data_count(P) interface returns the number of columns in the
5195 ** interfaces) then sqlite3_data_count(P) returns 0.
5196 ** ^The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer.
5197 ** ^The sqlite3_data_count(P) routine returns 0 if the previous call to
5198 ** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P)
5206 SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt);
89015 SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt){
132366 #define sqlite3_data_count sqlite3_api->data_count
132809 sqlite3_data_count,
183131 if( rc==SQLITE_OK && sqlite3_data_count(pCsr->pStmt)-1>iCol ){
185305 assert( sqlite3_data_count(pCsr->pStmt)==0 );
185461 assert( sqlite3_data_count(pCsr->pStmt)==0 );
196762 assert( sqlite3_data_count(pStmt)==1 );