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

getBinaryTypeDeclarationSQLSnippet() защищенный Метод

protected getBinaryTypeDeclarationSQLSnippet ( $length, $fixed )
    protected function getBinaryTypeDeclarationSQLSnippet($length, $fixed)
    {
        return 'RAW(' . ($length ?: $this->getBinaryMaxLength()) . ')';
    }
OraclePlatform