Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 1.0.0BETA1
-
Fix Version/s: None
-
Component/s: None
-
Labels:None
Description
What i want to do is to change the database name of the document manager:
$config = new Configuration();
$dm = new DocumentManager($conn, 'my_db', $config);
$config->setDefaultDB('another_db');
$dm->getDatabase(); // 'my_db' insteadof 'another_db'
Is there another solution to do this ?