Doctrine\DBAL\Platforms\OraclePlatform::getNowExpression PHP Метод

getNowExpression() публичный Метод

{@inheritDoc}
public getNowExpression ( $type = 'timestamp' )
    public function getNowExpression($type = 'timestamp')
    {
        switch ($type) {
            case 'date':
            case 'time':
            case 'timestamp':
            default:
                return 'TO_CHAR(CURRENT_TIMESTAMP, \'YYYY-MM-DD HH24:MI:SS\')';
        }
    }
OraclePlatform