예제 #1
0
파일: oracle.class.php 프로젝트: cwcw/cms
 /**
  *@Decription : Constructor
  *
  *@Param : int		which Db will be connected to
  *
  *@return: void
  */
 public function oracle($dbSeq = 0)
 {
     global $MY_db_config;
     global $MY_lang;
     include_once MY_ROOT_PATH . "language/class/" . MY_kernel::getUserLang() . "/oracle.lang.php";
     //load class language
     $this->connect($MY_db_config['oracle'][$dbSeq]);
 }