Home | History | Annotate | Download | only in orig

Lines Matching full:sqlite3_data_count

5108 ** See also: [sqlite3_data_count()]
5316 ** ^The sqlite3_data_count(P) interface returns the number of columns in the
5320 ** interfaces) then sqlite3_data_count(P) returns 0.
5321 ** ^The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer.
5322 ** ^The sqlite3_data_count(P) routine returns 0 if the previous call to
5323 ** [sqlite3_step](P) returned [SQLITE_DONE]. ^The sqlite3_data_count(P)
5331 SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt);
78671 SQLITE_API int sqlite3_data_count(sqlite3_stmt *pStmt){
113638 #define sqlite3_data_count sqlite3_api->data_count
114019 sqlite3_data_count,
152177 if( rc==SQLITE_OK && sqlite3_data_count(pCsr->pStmt)-1>iCol ){
154307 assert( sqlite3_data_count(pCsr->pStmt)==0 );
154464 assert( sqlite3_data_count(pCsr->pStmt)==0 );
165614 assert( sqlite3_data_count(pStmt)==1 );