mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-08 14:48:32 -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
|
||||
|
||||
1.26 to be released
|
||||
1.26_01 Tue 5 May 2009
|
||||
- Added ORDINAL_POSITION support for $dbh->column_info (ADAMK)
|
||||
- Applied several fixes from GFUJI to clean up code (#45578)
|
||||
(ISHIGAKI)
|
||||
|
|
|
@ -8,8 +8,8 @@ use DynaLoader ();
|
|||
use vars qw($VERSION @ISA);
|
||||
use vars qw{$err $errstr $drh $sqlite_version};
|
||||
BEGIN {
|
||||
$VERSION = '1.26';
|
||||
@ISA = ('DynaLoader');
|
||||
$VERSION = '1.26_01';
|
||||
@ISA = 'DynaLoader';
|
||||
|
||||
# Initialize errors
|
||||
$err = undef;
|
||||
|
@ -397,6 +397,7 @@ sub column_info {
|
|||
$sponge->err,
|
||||
$sponge->errstr,
|
||||
);
|
||||
|
||||
return $sth;
|
||||
}
|
||||
|
||||
|
|
|
@ -9,9 +9,9 @@ use Test::More ();
|
|||
|
||||
use vars qw{$VERSION @ISA @EXPORT};
|
||||
BEGIN {
|
||||
$VERSION = '1.26';
|
||||
@ISA = qw{ Exporter };
|
||||
@EXPORT = qw{ connect_ok };
|
||||
$VERSION = '1.26_01';
|
||||
@ISA = 'Exporter';
|
||||
@EXPORT = 'connect_ok';
|
||||
|
||||
# Allow tests to load modules bundled in /inc
|
||||
unshift @INC, 'inc';
|
||||
|
|
Loading…
Add table
Reference in a new issue