From 05637416529606d1aa9c19a3f988c386c17b1352 Mon Sep 17 00:00:00 2001
From: Robin Appelman <icewind1991@gmail.com>
Date: Mon, 20 Jun 2011 19:04:31 +0200
Subject: [PATCH] fix sqlite3 driver for php<5.3

---
 lib/MDB2/Driver/sqlite3.php | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lib/MDB2/Driver/sqlite3.php b/lib/MDB2/Driver/sqlite3.php
index a569da187aa..3b74afed146 100644
--- a/lib/MDB2/Driver/sqlite3.php
+++ b/lib/MDB2/Driver/sqlite3.php
@@ -412,7 +412,9 @@ class MDB2_Driver_sqlite3 extends MDB2_Driver_Common
 
         $php_errormsg = '';
 		$this->connection = new SQLite3($database_file);
-		$this->connection->busyTimeout(100);
+		if(is_callable(array($this->connection,'busyTimeout'))){//busy timout is only available in php>=5.3
+			$this->connection->busyTimeout(100);
+		}
         $this->_lasterror = $this->connection->lastErrorMsg();
         if (!$this->connection) {
             return $this->raiseError(MDB2_ERROR_CONNECT_FAILED, null, null,
-- 
GitLab