2013-02-25 11:19:49 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2016-07-21 18:07:57 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
|
|
|
*
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Bart Visscher <bartv@thisnet.nl>
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2016-07-21 19:13:36 +03:00
|
|
|
* @author Robin Appelman <robin@icewind.nl>
|
2016-01-12 17:02:16 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
2019-12-03 21:57:53 +03:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
2015-03-26 13:44:34 +03:00
|
|
|
*
|
2013-02-25 11:19:49 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2013-02-25 11:19:49 +04:00
|
|
|
namespace OC\DB;
|
|
|
|
|
|
|
|
class AdapterOCI8 extends Adapter {
|
2013-03-22 21:36:40 +04:00
|
|
|
public function lastInsertId($table) {
|
2015-11-20 15:00:42 +03:00
|
|
|
if (is_null($table)) {
|
|
|
|
throw new \InvalidArgumentException('Oracle requires a table name to be passed into lastInsertId()');
|
|
|
|
}
|
2014-09-09 15:57:02 +04:00
|
|
|
if ($table !== null) {
|
2013-03-22 21:36:40 +04:00
|
|
|
$suffix = '_SEQ';
|
2014-09-09 15:57:02 +04:00
|
|
|
$table = '"' . $table . $suffix . '"';
|
2013-03-22 21:36:40 +04:00
|
|
|
}
|
2013-07-24 00:16:04 +04:00
|
|
|
return $this->conn->realLastInsertId($table);
|
2013-03-22 21:36:40 +04:00
|
|
|
}
|
2013-02-26 01:49:55 +04:00
|
|
|
|
2020-04-10 17:54:27 +03:00
|
|
|
public const UNIX_TIMESTAMP_REPLACEMENT = "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400";
|
2014-09-09 15:57:02 +04:00
|
|
|
|
2013-02-26 01:49:55 +04:00
|
|
|
public function fixupStatement($statement) {
|
2014-09-18 17:09:57 +04:00
|
|
|
$statement = preg_replace('/`(\w+)` ILIKE \?/', 'REGEXP_LIKE(`$1`, \'^\' || REPLACE(?, \'%\', \'.*\') || \'$\', \'i\')', $statement);
|
2014-09-09 15: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-26 01:49:55 +04:00
|
|
|
return $statement;
|
|
|
|
}
|
2013-02-25 11:19:49 +04:00
|
|
|
}
|