コード例 #1
0
ファイル: Schema.php プロジェクト: aaroncox/epicmongo
 public function getMongoDb()
 {
     return Epic_Mongo::getConnection($this->getConnection())->selectDB($this->getDb());
 }
コード例 #2
0
ファイル: bootstrap.php プロジェクト: aaroncox/epicmongo
 public function getMongoDb()
 {
     return Epic_Mongo::getConnection('default')->selectDB($this->dbName);
 }
コード例 #3
0
 /**
  * @expectedException Epic_Mongo_Exception
  */
 public function testGetConnectionException()
 {
     Epic_Mongo::getConnection('doesnt_exist');
 }