mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 22:58:17 -04:00
Preparing for dev release
This commit is contained in:
parent
dee5f81976
commit
7315981580
3 changed files with 7 additions and 6 deletions
2
Changes
2
Changes
|
@ -1,6 +1,6 @@
|
||||||
Changes for Perl extension DBD-SQLite
|
Changes for Perl extension DBD-SQLite
|
||||||
|
|
||||||
1.26 to be released
|
1.26_01 Tue 5 May 2009
|
||||||
- Added ORDINAL_POSITION support for $dbh->column_info (ADAMK)
|
- Added ORDINAL_POSITION support for $dbh->column_info (ADAMK)
|
||||||
- Applied several fixes from GFUJI to clean up code (#45578)
|
- Applied several fixes from GFUJI to clean up code (#45578)
|
||||||
(ISHIGAKI)
|
(ISHIGAKI)
|
||||||
|
|
|
@ -8,8 +8,8 @@ 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.26';
|
$VERSION = '1.26_01';
|
||||||
@ISA = ('DynaLoader');
|
@ISA = 'DynaLoader';
|
||||||
|
|
||||||
# Initialize errors
|
# Initialize errors
|
||||||
$err = undef;
|
$err = undef;
|
||||||
|
@ -397,6 +397,7 @@ sub column_info {
|
||||||
$sponge->err,
|
$sponge->err,
|
||||||
$sponge->errstr,
|
$sponge->errstr,
|
||||||
);
|
);
|
||||||
|
|
||||||
return $sth;
|
return $sth;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -9,9 +9,9 @@ use Test::More ();
|
||||||
|
|
||||||
use vars qw{$VERSION @ISA @EXPORT};
|
use vars qw{$VERSION @ISA @EXPORT};
|
||||||
BEGIN {
|
BEGIN {
|
||||||
$VERSION = '1.26';
|
$VERSION = '1.26_01';
|
||||||
@ISA = qw{ Exporter };
|
@ISA = 'Exporter';
|
||||||
@EXPORT = qw{ connect_ok };
|
@EXPORT = 'connect_ok';
|
||||||
|
|
||||||
# Allow tests to load modules bundled in /inc
|
# Allow tests to load modules bundled in /inc
|
||||||
unshift @INC, 'inc';
|
unshift @INC, 'inc';
|
||||||
|
|
Loading…
Add table
Reference in a new issue