diff --git a/Changes b/Changes index ea388f2..dfa3b43 100644 --- a/Changes +++ b/Changes @@ -1,6 +1,6 @@ Changes for Perl extension DBD-SQLite -1.34_03 to be released +1.34_03 Tue 1 Nov 2011 - Adding an explicit dynamic_config => 1 (ADAMK) - bind_param SQL_INTEGER error now actually dies with RaiseError. (ISHIGAKI) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index c9cf0f3..6f095f2 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -10,7 +10,7 @@ use vars qw{$err $errstr $drh $sqlite_version $sqlite_version_number}; use vars qw{%COLLATION}; BEGIN { - $VERSION = '1.34_02'; + $VERSION = '1.34_03'; @ISA = 'DynaLoader'; # Initialize errors @@ -56,6 +56,7 @@ sub driver { DBD::SQLite::db->install_method('sqlite_backup_to_file'); DBD::SQLite::db->install_method('sqlite_enable_load_extension'); DBD::SQLite::db->install_method('sqlite_register_fts3_perl_tokenizer'); + $methods_are_installed++; }