Feature #17218
closedOverwritting of handler attributes.
0%
Description
It would be great to have the opportunity to overwrite/set connection attributes within localconf. E.g:
$TYPO3_CONF_VARS['EXTCONF']['dbal']['handlerCfg'] = array (
'testDB' => array (
'type' => 'adodb',
'config' => array(
'username' => 'xxx',
'password' => 'xxx',
'host' => 'xxx',
'database' => 'demodb',
'driver' => 'mssql',
'nameQuote' => ''
)
)
Note the nameQuote parameter.
(issue imported from #M5452)
Updated by Karsten Dambekalns over 17 years ago
This is targeted at changing the name quote, that can be done in MSSQL setup (see DBAL manual). For all those things remaining that need to be set on a per-connection basis, a DBAL-equivalent of setDBinit will be introduced. Stay tuned.