mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
release 1.61_02
This commit is contained in:
parent
954ab8f289
commit
c02316e38b
3 changed files with 10 additions and 2 deletions
8
Changes
8
Changes
|
@ -1,5 +1,13 @@
|
||||||
Changes for Perl extension DBD-SQLite
|
Changes for Perl extension DBD-SQLite
|
||||||
|
|
||||||
|
1.61_02 2018-12-01
|
||||||
|
- Added sqlite_backup_from_dbh/sqlite_backup_to_dbh methods
|
||||||
|
- Introduced sqlite_prefer_numeric_type database handle attribute
|
||||||
|
that changes the value of TYPE statement handle attribute
|
||||||
|
from an array of string to an array of integer, as an experimental
|
||||||
|
feature. Setting this may break your applications.
|
||||||
|
- Changed preferred bugtracker
|
||||||
|
|
||||||
1.61_01 2018-12-01
|
1.61_01 2018-12-01
|
||||||
- Added ability to configure SQLITE_MAX_LENGT with environmental
|
- Added ability to configure SQLITE_MAX_LENGT with environmental
|
||||||
variable (Roy Storey)
|
variable (Roy Storey)
|
||||||
|
|
|
@ -5,7 +5,7 @@ use strict;
|
||||||
use DBI 1.57 ();
|
use DBI 1.57 ();
|
||||||
use DynaLoader ();
|
use DynaLoader ();
|
||||||
|
|
||||||
our $VERSION = '1.61_01';
|
our $VERSION = '1.61_02';
|
||||||
our @ISA = 'DynaLoader';
|
our @ISA = 'DynaLoader';
|
||||||
|
|
||||||
# sqlite_version cache (set in the XS bootstrap)
|
# sqlite_version cache (set in the XS bootstrap)
|
||||||
|
|
|
@ -5,7 +5,7 @@ use strict;
|
||||||
use warnings;
|
use warnings;
|
||||||
use Scalar::Util qw/weaken/;
|
use Scalar::Util qw/weaken/;
|
||||||
|
|
||||||
our $VERSION = '1.61_01';
|
our $VERSION = '1.61_02';
|
||||||
our @ISA;
|
our @ISA;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue