diff options
author | Jeffery To <jeffery.to@gmail.com> | 2009-07-17 16:54:46 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2009-07-17 16:54:46 +0800 |
commit | 1aea5989776e75f3b7af236049d511a28c3f1ff7 (patch) | |
tree | fbf355767238df2dbdebf086fa2c9e5f51f7dbed /extlib/DB/DataObject/Cast.php | |
parent | 5015505f16c9ce412e6f5535f80188f33d24c4ea (diff) | |
parent | c32e494c0c480e30317b0f0a8dcae7103c4ff89e (diff) |
Merge branch '0.9.x' into private-rss
Diffstat (limited to 'extlib/DB/DataObject/Cast.php')
-rw-r--r-- | extlib/DB/DataObject/Cast.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/extlib/DB/DataObject/Cast.php b/extlib/DB/DataObject/Cast.php index 616abb55e..095d2a4d2 100644 --- a/extlib/DB/DataObject/Cast.php +++ b/extlib/DB/DataObject/Cast.php @@ -15,9 +15,9 @@ * @category Database * @package DB_DataObject * @author Alan Knowles <alan@akbkhome.com> - * @copyright 1997-2006 The PHP Group + * @copyright 1997-2008 The PHP Group * @license http://www.php.net/license/3_0.txt PHP License 3.0 - * @version CVS: $Id: Cast.php,v 1.15 2005/07/07 05:30:53 alan_k Exp $ + * @version CVS: $Id: Cast.php 264148 2008-08-04 03:44:59Z alan_k $ * @link http://pear.php.net/package/DB_DataObject */ @@ -391,7 +391,10 @@ class DB_DataObject_Cast { // this is funny - the parameter order is reversed ;) return "'".mysqli_real_escape_string($db->connection, $this->value)."'"; - + case 'sqlite': + // this is funny - the parameter order is reversed ;) + return "'".sqlite_escape_string($this->value)."'"; + default: return PEAR::raiseError("DB_DataObject_Cast cant handle blobs for Database:{$db->dsn['phptype']} Yet"); |