Well, this should be ultra-simple, but I simply can't seem to spot it among the 1001 sqlite-related commands.
So :
SELECT statement, with sqlite3_preparesqlite3_stepsqlite3_column_text(sqlStmt,X)The question is :
How can I get the number of columns in the row? (= the range in which X can... move...)
P.S. The question is tagged with d (I'm basically developing in D), but it won't make much difference since it's using native C bindings...
According to http://www.sqlite.org/c3ref/data_count.html,
int sqlite3_data_count(sqlite3_stmt *pStmt);
returns the number of columns in the current row of the result set of prepared statement
pStmt.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With