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

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

{@inheritDoc}
public getListTableConstraintsSQL ( $table )
    public function getListTableConstraintsSQL($table)
    {
        $table = $this->normalizeIdentifier($table);
        $table = $this->quoteStringLiteral($table->getName());
        return "SELECT * FROM user_constraints WHERE table_name = " . $table;
    }
OraclePlatform