August 2010
Intermediate to advanced
526 pages
23h 39m
English
sqlite3_column_count() — Get the number of result columns in a statement
int sqlite3_column_count( sqlite3_stmt* stmt );
stmt
A prepared statement.
The number of columns returned by a prepared statement.
This function returns the number of columns available in a row
result. Column indexes start at zero (0), so if this function returns 5, value column
indexes are 0 to 4. The value zero (0) is returned if the statement does not return
any result.
Read now
Unlock full access