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

Preparing for release of _03

This commit is contained in:
Adam Kennedy 2011-11-01 03:40:33 +00:00
parent 2059f6f2ae
commit c417720270
2 changed files with 3 additions and 2 deletions

View file

@ -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)

View file

@ -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++;
}