/**
  * @Given /^I connect to database "([^"]*)"$/
  */
 public function iConnectToDatabase($dbname)
 {
     $this->db = new Database();
     $this->db->setDbConfDir($this->dbconf_dir);
     $this->db->parseConf($dbname);
     $this->db->connect();
 }