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) {
|
|
|
|
|
if($table !== null) {
|
|
|
|
|
$suffix = '_SEQ';
|
|
|
|
|
$table = '"'.$table.$suffix.'"';
|
|
|
|
|
}
|
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";
|
2013-02-25 16:49:55 -05:00
|
|
|
public function fixupStatement($statement) {
|
|
|
|
|
$statement = str_replace( '`', '"', $statement );
|
|
|
|
|
$statement = str_ireplace( 'NOW()', 'CURRENT_TIMESTAMP', $statement );
|
2013-08-07 12:16:34 -04:00
|
|
|
$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
|
|
|
}
|