2013-02-25 07:19:49 +00:00
|
|
|
<?php
|
2024-05-23 07:26:56 +00:00
|
|
|
|
2013-02-25 07:19:49 +00:00
|
|
|
/**
|
2024-05-23 07:26:56 +00:00
|
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
2013-02-25 07:19:49 +00:00
|
|
|
*/
|
|
|
|
namespace OC\DB;
|
|
|
|
|
|
|
|
class AdapterOCI8 extends Adapter {
|
2013-03-22 17:36:40 +00:00
|
|
|
public function lastInsertId($table) {
|
2015-11-20 12:00:42 +00:00
|
|
|
if (is_null($table)) {
|
|
|
|
throw new \InvalidArgumentException('Oracle requires a table name to be passed into lastInsertId()');
|
|
|
|
}
|
2014-09-09 11:57:02 +00:00
|
|
|
if ($table !== null) {
|
2013-03-22 17:36:40 +00:00
|
|
|
$suffix = '_SEQ';
|
2014-09-09 11:57:02 +00:00
|
|
|
$table = '"' . $table . $suffix . '"';
|
2013-03-22 17:36:40 +00:00
|
|
|
}
|
2013-07-23 20:16:04 +00:00
|
|
|
return $this->conn->realLastInsertId($table);
|
2013-03-22 17:36:40 +00:00
|
|
|
}
|
2013-02-25 21:49:55 +00:00
|
|
|
|
2020-04-10 14:54:27 +00:00
|
|
|
public const UNIX_TIMESTAMP_REPLACEMENT = "(cast(sys_extract_utc(systimestamp) as date) - date'1970-01-01') * 86400";
|
2014-09-09 11:57:02 +00:00
|
|
|
|
2013-02-25 21:49:55 +00:00
|
|
|
public function fixupStatement($statement) {
|
2014-09-18 13:09:57 +00:00
|
|
|
$statement = preg_replace('/`(\w+)` ILIKE \?/', 'REGEXP_LIKE(`$1`, \'^\' || REPLACE(?, \'%\', \'.*\') || \'$\', \'i\')', $statement);
|
2014-09-09 11:57:02 +00: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 21:49:55 +00:00
|
|
|
return $statement;
|
|
|
|
}
|
2013-02-25 07:19:49 +00:00
|
|
|
}
|