2013-02-25 02:19:49 -05:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
|
* later.
|
|
|
|
|
* See the COPYING-README file.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
namespace OC\DB;
|
|
|
|
|
|
|
|
|
|
class AdapterOCI8 extends Adapter {
|
2013-03-22 13:36:40 -04:00
|
|
|
public function lastInsertId($table) {
|
2014-09-09 07:57:02 -04:00
|
|
|
if ($table !== null) {
|
2013-03-22 13:36:40 -04:00
|
|
|
$suffix = '_SEQ';
|
2014-09-09 07:57:02 -04:00
|
|
|
$table = '"' . $table . $suffix . '"';
|
2013-03-22 13:36:40 -04:00
|
|
|
}
|
2013-07-23 16:16:04 -04:00
|
|
|
return $this->conn->realLastInsertId($table);
|
2013-03-22 13:36:40 -04:00
|
|
|
}
|
2013-02-25 16:49:55 -05:00
|
|
|
|
2013-08-07 12:16:34 -04:00
|
|
|
const UNIX_TIMESTAMP_REPLACEMENT = "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400";
|
2014-09-09 07:57:02 -04:00
|
|
|
|
2013-02-25 16:49:55 -05:00
|
|
|
public function fixupStatement($statement) {
|
2014-09-18 09:09:57 -04:00
|
|
|
$statement = preg_replace('/`(\w+)` ILIKE \?/', 'REGEXP_LIKE(`$1`, \'^\' || REPLACE(?, \'%\', \'.*\') || \'$\', \'i\')', $statement);
|
2014-09-09 07:57:02 -04:00
|
|
|
$statement = str_replace('`', '"', $statement);
|
|
|
|
|
$statement = str_ireplace('NOW()', 'CURRENT_TIMESTAMP', $statement);
|
|
|
|
|
$statement = str_ireplace('UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement);
|
2013-02-25 16:49:55 -05:00
|
|
|
return $statement;
|
|
|
|
|
}
|
2013-02-25 02:19:49 -05:00
|
|
|
}
|