Has somebody an example for the dbConnector?
// make database connection
$db->connect(
$this->config['Database']['dbname'],
$this->config['MasterServer']['servername'],
$this->config['MasterServer']['port'],
$this->config['MasterServer']['username'],
$this->config['MasterServer']['password'],
$this->config['MasterServer']['usepconnect'],
$this->config['SlaveServer']['servername'],
$this->config['SlaveServer']['port'],
$this->config['SlaveServer']['username'],
$this->config['SlaveServer']['password'],
$this->config['SlaveServer']['usepconnect'],
$this->config['Mysqli']['ini_file'],
$this->config['Mysqli']['charset']
);
|