function SelectDB($dbName)
 {
     if (!@odbtp_select_db($dbName, $this->_connectionID)) {
         return false;
     }
     $this->database = $dbName;
     $this->databaseName = $dbName;
     # obsolete, retained for compat with older adodb versions
     return true;
 }
 function SelectDB($dbName)
 {
     if (!@odbtp_select_db($dbName, $this->_connectionID)) {
         return false;
     }
     $this->databaseName = $dbName;
     return true;
 }