rradutzu / zend2-doctrine-dynamic-db
Zend2/3 Doctrine Module that allows defining connections using dynamic database names
Installs: 13 767
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- doctrine/doctrine-orm-module: ~6.3
- laminas/laminas-mvc: ~3.8
This package is auto-updated.
Last update: 2025-03-19 15:41:31 UTC
README
Zend2 Doctrine Module that allows defining connections using dynamic database names
#Usage
- Include 'DoctrineDynamicDb' in your modules.config.php file
- Add to the used connection the 'dbNameFactory' param.:
return array(
//...
'doctrine' => array(
'connection' => array(
//...
'orm_dynamic' => array(
'driverClass' => 'Doctrine\DBAL\Driver\PDOMySql\Driver',
'params' => array(
'host' => 'localhost',
'port' => '3306',
'user' => 'root',
'password' => 'kotor3',
'dbname' => '%',
// this needs to return instance of DoctrineMultiDbAdapter\Client\ClientInterface,
// a custom object or a string which represents the db name
'dbNameFactory' => 'ClientFactory',
// optional | name of the method used to retrieve the db name if dbNameFactory
// returns a custom object
'dbNameFactoryMethod' => 'getClientDb'
)
)
),
'dynamic_entitymanager' => array(
// need to add the connection to the new entity manager
'orm_dynamic' => array()
)
),
//...
);
3.Get the entity manager for the dynamic connection using:
$em = $serviceLocator->get('doctrine.dynamic_entitymanager.##connection_name##');