From 68d8cbaa3182a89892a050e3634e7d4969c86728 Mon Sep 17 00:00:00 2001 From: Jay Allen Date: Thu, 3 Feb 2011 02:33:12 -0800 Subject: [PATCH] [#736] Added comment about conflicting DBD::SQLite version dependency in MT::ObjectDriver::Driver::DBD::SQLite --- lib/MT/ObjectDriver/Driver/DBD/SQLite.pm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/MT/ObjectDriver/Driver/DBD/SQLite.pm b/lib/MT/ObjectDriver/Driver/DBD/SQLite.pm index f42f84b9d..36cb42a18 100644 --- a/lib/MT/ObjectDriver/Driver/DBD/SQLite.pm +++ b/lib/MT/ObjectDriver/Driver/DBD/SQLite.pm @@ -15,6 +15,9 @@ use DBI qw(:sql_types); BEGIN { eval "use DBD::SQLite 1.11;"; + # Line 117 says: + # eval "use DBD::SQLite 1.14;"; + # FIXME Perhaps these checks should be consolidated? if ($@) { *bind_param_attributes = sub { my ( $dbd, $data_type ) = @_;