From 31996481e2d381474b9f814e4e0468ccfe8ed3e0 Mon Sep 17 00:00:00 2001 From: Adam Kennedy Date: Sat, 4 Apr 2009 22:49:28 +0000 Subject: [PATCH] Tweaks --- lib/DBD/SQLite.pm | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/lib/DBD/SQLite.pm b/lib/DBD/SQLite.pm index d51d727..557b0e1 100644 --- a/lib/DBD/SQLite.pm +++ b/lib/DBD/SQLite.pm @@ -77,8 +77,7 @@ sub prepare { Statement => $statement, }); - DBD::SQLite::st::_prepare($sth, $statement, @attribs) - or return undef; + DBD::SQLite::st::_prepare($sth, $statement, @attribs) or return undef; return $sth; } @@ -88,9 +87,9 @@ sub _get_version { } my %info = ( - 17 => 'SQLite', # SQL_DBMS_NAME - 18 => \&_get_version, # SQL_DBMS_VER - 29 => '"', # SQL_IDENTIFIER_QUOTE_CHAR + 17 => 'SQLite', # SQL_DBMS_NAME + 18 => \&_get_version, # SQL_DBMS_VER + 29 => '"', # SQL_IDENTIFIER_QUOTE_CHAR ); sub get_info {