141 return 'url=`'.$this->getURL().
'\', table=`
'.$this->getTable().'\
'';
162 function PGTStorageDB($cas_parent,$user,$password,$database_type,$hostname,$port,$database,$table)
176 $this->_url = $database_type.
':'.
'//'.$user.
':'.$password.
'@'.$hostname.
':'.$port.
'/'.$database;
202 if (!class_exists(
'DB')) {
203 include_once(
'DB.php');
207 $this->_link = DB::connect($this->
getURL());
208 if ( DB::isError($this->_link) ) {
209 phpCAS::error(
'could not connect to database ('.DB::errorMessage($this->_link).
')');
211 var_dump($this->_link);