mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 22:28:47 -04:00
Preparing for the _02 release
This commit is contained in:
parent
7ecd1839b9
commit
422cea810d
3 changed files with 12 additions and 2 deletions
10
Changes
10
Changes
|
@ -1,5 +1,15 @@
|
||||||
Changes for Perl extension DBD-SQLite.
|
Changes for Perl extension DBD-SQLite.
|
||||||
|
|
||||||
|
1.22_02 Wed 9 Apr 2009
|
||||||
|
- Added missing documentation bits for 'create_collation'
|
||||||
|
and 'progress_handler' (DAMI)
|
||||||
|
- Resolved RT#25924 (Arguments to user-defined functions do not
|
||||||
|
respect unicode setting) (DAMI)
|
||||||
|
- Added comments on the return values on error, and fixed another
|
||||||
|
wrong return value in execute (ISHIGAKI)
|
||||||
|
- Added SQL_NULLABLE_UNKNOWN; still wonders if the error above
|
||||||
|
should be ignored or not (ISHIGAKI)
|
||||||
|
|
||||||
1.22_01 Wed 9 Apr 2009
|
1.22_01 Wed 9 Apr 2009
|
||||||
- Resolved #25371: Calls sv_utf8_upgrade on strings going into
|
- Resolved #25371: Calls sv_utf8_upgrade on strings going into
|
||||||
the database to make sure latin-1 strings are not saved as
|
the database to make sure latin-1 strings are not saved as
|
||||||
|
|
|
@ -8,7 +8,7 @@ use DynaLoader ();
|
||||||
use vars qw($VERSION @ISA);
|
use vars qw($VERSION @ISA);
|
||||||
use vars qw{$err $errstr $drh $sqlite_version};
|
use vars qw{$err $errstr $drh $sqlite_version};
|
||||||
BEGIN {
|
BEGIN {
|
||||||
$VERSION = '1.22_01';
|
$VERSION = '1.22_02';
|
||||||
@ISA = ('DynaLoader');
|
@ISA = ('DynaLoader');
|
||||||
|
|
||||||
# Driver singleton
|
# Driver singleton
|
||||||
|
|
|
@ -9,7 +9,7 @@ use Test::More ();
|
||||||
|
|
||||||
use vars qw{$VERSION @ISA @EXPORT};
|
use vars qw{$VERSION @ISA @EXPORT};
|
||||||
BEGIN {
|
BEGIN {
|
||||||
$VERSION = '1.22_01';
|
$VERSION = '1.22_02';
|
||||||
@ISA = qw{ Exporter };
|
@ISA = qw{ Exporter };
|
||||||
@EXPORT = qw{ connect_ok };
|
@EXPORT = qw{ connect_ok };
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue