Phalcon\Db\Dialect\Oracle::prepareTable PHP Method

prepareTable() protected method

Prepares table for this RDBMS.
protected prepareTable ( string $table, string $schema = null, string $alias = null, string $escapeChar = null ) : string
$table string
$schema string
$alias string
$escapeChar string
return string
    protected function prepareTable($table, $schema = null, $alias = null, $escapeChar = null)
    {
        $table = $this->escape($table, $escapeChar);
        // Schema
        if (!empty($schema)) {
            $table = $this->escapeSchema($schema, $escapeChar) . '.' . $table;
        }
        // Alias
        if (!empty($alias)) {
            $table .= ' ' . $this->escape($alias, $escapeChar);
        }
        return $table;
    }