Convert is_prepared_statement to bool

This commit is contained in:
Niels Dossche 2025-02-09 19:33:33 +01:00
parent e14f9f4c42
commit dbf7d4402c
2 changed files with 3 additions and 3 deletions

View file

@ -94,7 +94,7 @@ struct _php_sqlite3_result_object {
php_sqlite3_db_object *db_obj;
php_sqlite3_stmt *stmt_obj;
int is_prepared_statement;
bool is_prepared_statement;
/* Cache of column names to speed up repeated fetchArray(SQLITE3_ASSOC) calls.
* Cache is cleared on reset() and finalize() calls. */
int column_count;