*** DRAFT ***

SQLite C Interface

Number of columns in a result set

int sqlite3_data_count(sqlite3_stmt *pStmt);

The sqlite3_data_count(P) interface returns the number of columns in the current row of the result set of prepared statement P. If prepared statement P does not have results ready to return (via calls to the sqlite3_column_*() of interfaces) then sqlite3_data_count(P) returns 0. The sqlite3_data_count(P) routine also returns 0 if P is a NULL pointer.

See also: sqlite3_column_count()

See also lists of Objects, Constants, and Functions.

*** DRAFT ***