2013-02-25 11:19:49 +04: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 AdapterSqlite extends Adapter {
|
2013-02-26 01:49:55 +04:00
|
|
|
public function fixupStatement($statement) {
|
|
|
|
$statement = str_replace( '`', '"', $statement );
|
|
|
|
$statement = str_ireplace( 'NOW()', 'datetime(\'now\')', $statement );
|
|
|
|
$statement = str_ireplace( 'UNIX_TIMESTAMP()', 'strftime(\'%s\',\'now\')', $statement );
|
|
|
|
return $statement;
|
|
|
|
}
|
2013-02-25 11:19:49 +04:00
|
|
|
}
|