コード例 #1
0
ファイル: SQLite.php プロジェクト: reoring/sabel
 public function testInit()
 {
     Sabel_Db_Config::add("default", Test_DB_TestConfig::getPdoSqliteConfig());
     Test_DB_Test::$db = "SQLITE";
 }
コード例 #2
0
ファイル: Mysql.php プロジェクト: reoring/sabel
 public function testInit()
 {
     Sabel_Db_Config::add("default", Test_DB_TestConfig::getMysqlConfig());
     Test_DB_Test::$db = "MYSQL";
 }
コード例 #3
0
ファイル: Ibase.php プロジェクト: reoring/sabel
 public function testInit()
 {
     Sabel_Db_Config::add("default", Test_DB_TestConfig::getIbaseConfig());
     Test_DB_Test::$db = "IBASE";
 }
コード例 #4
0
ファイル: Oci.php プロジェクト: reoring/sabel
 public function testInit()
 {
     Sabel_Db_Config::add("default", Test_DB_TestConfig::getOciConfig());
     Test_DB_Test::$db = "ORACLE";
 }
コード例 #5
0
ファイル: PdoOci.php プロジェクト: reoring/sabel
 public function testInit()
 {
     Sabel_Db_Config::add("default", self::$params1);
     Test_DB_Test::$db = "PDO_ORACLE";
 }