on execution of prepared statments).
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2005, PHP 5.1
+- Fixed bug #33841 (pdo sqlite driver forgets to update affected column count
+ on execution of prepared statments).
- Fixed bug #33802 (throw Exception in error handler causes crash). (Dmitry)
- Fixed bug #33710 (ArrayAccess objects doen't initialize $this). (Dmitry)
- Fixed bug #33578 (strtotime() problem with "Oct17" format). (Derick)
case SQLITE_DONE:
stmt->column_count = sqlite3_column_count(S->stmt);
+ stmt->row_count = sqlite3_changes(S->H->db);
sqlite3_reset(S->stmt);
S->done = 1;
return 1;