Simon Slavin <[email protected]> wrote: > Use sqlite3_result_int(stmt, 0) to get the value of the first (only) column > of the row.
Make it sqlite3_column_int. sqlite3_result_* is used inside custom functions, to set the return value of the function call. -- Igor Tandetnik _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

