Granada\ORM::_setup_identifier_quote_character PHP Method

_setup_identifier_quote_character() protected static method

Detect and initialise the character used to quote identifiers (table names, column names etc). If this has been specified manually using ORM::configure('identifier_quote_character', 'some-char'), this will do nothing.
protected static _setup_identifier_quote_character ( string $connection_name )
$connection_name string Which connection to use
    protected static function _setup_identifier_quote_character($connection_name)
    {
        if (is_null(self::$_config[$connection_name]['identifier_quote_character'])) {
            self::$_config[$connection_name]['identifier_quote_character'] = self::_detect_identifier_quote_character($connection_name);
        }
    }
ORM