mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 22:28:47 -04:00
Found the ACTUAL minimum DBI version we need, and confirming we build against it.
This commit is contained in:
parent
b020597b48
commit
12974f71a9
3 changed files with 5 additions and 2 deletions
3
Changes
3
Changes
|
@ -2,6 +2,9 @@ Changes for Perl extension DBD-SQLite.
|
||||||
|
|
||||||
1.19_10 Mon 6 Apr 2009
|
1.19_10 Mon 6 Apr 2009
|
||||||
- A few more tests moved to Test::More (ADAMK)
|
- A few more tests moved to Test::More (ADAMK)
|
||||||
|
- We need DBIXS_REVISION, which appeared in DBI 1.57.
|
||||||
|
Bumping up our dependency to match it and confirmed myself
|
||||||
|
that DBD::SQLite actually builds against 1.57 (ADAMK)
|
||||||
- Resolved #40594: $sth->{NULLABLE} implementation (ISHIGAKI)
|
- Resolved #40594: $sth->{NULLABLE} implementation (ISHIGAKI)
|
||||||
- Resolved #29629: sqlite where length issue (actually this has
|
- Resolved #29629: sqlite where length issue (actually this has
|
||||||
been fixed before) (ISHIGAKI)
|
been fixed before) (ISHIGAKI)
|
||||||
|
|
|
@ -210,7 +210,7 @@ WriteMakefile(
|
||||||
configure_requires => {
|
configure_requires => {
|
||||||
'ExtUtils::MakeMaker' => '6.48',
|
'ExtUtils::MakeMaker' => '6.48',
|
||||||
'File::Spec' => (WINLIKE ? '3.27' : '0.82'),
|
'File::Spec' => (WINLIKE ? '3.27' : '0.82'),
|
||||||
'DBI' => '1.43',
|
'DBI' => '1.57',
|
||||||
},
|
},
|
||||||
build_requires => {
|
build_requires => {
|
||||||
'Test::More' => '0.42',
|
'Test::More' => '0.42',
|
||||||
|
|
|
@ -2,7 +2,7 @@ package DBD::SQLite;
|
||||||
|
|
||||||
use 5.00503;
|
use 5.00503;
|
||||||
use strict;
|
use strict;
|
||||||
use DBI 1.43 ();
|
use DBI 1.57 ();
|
||||||
use DynaLoader ();
|
use DynaLoader ();
|
||||||
|
|
||||||
use vars qw($VERSION @ISA);
|
use vars qw($VERSION @ISA);
|
||||||
|
|
Loading…
Add table
Reference in a new issue