Example #1
0
 public function connect()
 {
     if (!self::$_connectSource) {
         self::$_connectSource = @mysql_connect($this->_dbConfig['host'], $this->_dbConfig['user'], $this->_dbConfig['password']);
         self::$_connectSource = oci_connect();
         if (!self::$_connectSource) {
             throw new Exception('mysql connect error ' . mysql_error());
             //die('mysql connect error' . mysql_error());
         }
         mysql_select_db($this->_dbConfig['database'], self::$_connectSource);
         mysql_query("set names UTF8", self::$_connectSource);
     }
     return self::$_connectSource;
     //if(!self::$_connectSource) {
     //	self::$_connectSource = @mysql_connect($this->_dbConfig['host'], $this->_dbConfig['user'], $this->_dbConfig['password']);
     //	if(!self::$_connectSource) {
     //		throw new Exception('mysql connect error ' . mysql_error());
     //		//die('mysql connect error' . mysql_error());
     //	}
     //
     //	mysql_select_db($this->_dbConfig['database'], self::$_connectSource);
     //	mysql_query("set names UTF8", self::$_connectSource);
     //}
     //return self::$_connectSource;
 }
Example #2
0
 public function connect()
 {
     if (!self::$_connectSource) {
         self::$_connectSource = oci_connect($this->user, $this->pwd, $this->svr);
         if (!self::$_connectSource) {
             $e = oci_error();
             trigger_error(htmlentities($e['message'], ENT_QUOTES), E_USER_ERROR);
         }
     }
     return self::$_connectSource;
 }