public string escapeIdentifier (string $identifier)
Escapes a column/table/schema name
$escapedTable = $connection->escapeIdentifier('robots');
$escapedTable = $connection->escapeIdentifier(['store', 'robots']);
public string escapeIdentifier (string $identifier)
Escapes a column/table/schema name
$escapedTable = $connection->escapeIdentifier('robots');
$escapedTable = $connection->escapeIdentifier(['store', 'robots']);
Please login to continue.