1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 14:19:10 -04:00

Fixed failing t/07busy.t, fixed Changes file, bumped version to _05

This commit is contained in:
Max Maischein 2009-03-31 21:45:00 +00:00
parent 76a76e7855
commit 044e2f4038
2 changed files with 5 additions and 4 deletions

View file

@ -1,11 +1,13 @@
Revision history for Perl extension DBD-SQLite.
1.19_04 not yet released
- Updated to SQLite 3.6.12 (ISHIGAKI)
1.19_05 not yet released
- Added collations from DBD::SQLite::Amalgamation (CORION)
. DBD::SQLite::Amalgamation 3.6.1.2 and DBD::SQLite 1.19_04
should be feature identical now.
1.19_04 not yet released
- Updated to SQLite 3.6.12 (ISHIGAKI)
1.19_03 Tue 31 Mar 2009
- Added ->column_info() (CORION)

View file

@ -398,8 +398,7 @@ sqlite_st_execute (SV *sth, imp_sth_t *imp_sth)
if (imp_sth->retval == SQLITE_ROW) {
continue;
}
/* There are bug reports that say this should be sqlite3_reset() */
sqlite3_finalize(imp_sth->stmt);
sqlite3_reset(imp_sth->stmt);
sqlite_error(sth, (imp_xxh_t*)imp_sth, imp_sth->retval, (char*)sqlite3_errmsg(imp_dbh->db));
return -5;
}