- Timestamp:
- 2013/08/02 13:22:57 (13 years ago)
- Location:
- branches/version-2_13-dev/data/module/MDB2/Driver/Native
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/version-2_13-dev/data/module/MDB2/Driver/Native/Common.php
r20764 r23022 43 43 // +----------------------------------------------------------------------+ 44 44 // 45 // $Id: Common.php ,v 1.2 2007/09/09 13:47:36 quipo Exp$45 // $Id: Common.php 242348 2007-09-09 13:47:36Z quipo $ 46 46 // 47 47 -
branches/version-2_13-dev/data/module/MDB2/Driver/Native/mysql.php
r20764 r23022 43 43 // +----------------------------------------------------------------------+ 44 44 // 45 // $Id: mysql.php ,v 1.9 2006/06/18 21:59:05 lsmith Exp$45 // $Id: mysql.php 215004 2006-06-18 21:59:05Z lsmith $ 46 46 // 47 47 -
branches/version-2_13-dev/data/module/MDB2/Driver/Native/pgsql.php
r20764 r23022 43 43 // +----------------------------------------------------------------------+ 44 44 // 45 // $Id: pgsql.php ,v 1.12 2006/07/15 13:07:15 lsmith Exp$45 // $Id: pgsql.php 327310 2012-08-27 15:16:18Z danielc $ 46 46 47 47 require_once 'MDB2/Driver/Native/Common.php'; … … 68 68 function deleteOID($OID) 69 69 { 70 $db = &$this->getDBInstance();71 if ( PEAR::isError($db)) {70 $db = $this->getDBInstance(); 71 if (MDB2::isError($db)) { 72 72 return $db; 73 73 } 74 74 75 75 $connection = $db->getConnection(); 76 if ( PEAR::isError($connection)) {76 if (MDB2::isError($connection)) { 77 77 return $connection; 78 78 }
Note: See TracChangeset
for help on using the changeset viewer.
