Exemplo n.º 1
0
 function ErrorMsg()
 {
     if (empty($this->_connectionID)) {
         return @odbtp_last_error();
     }
     return @odbtp_last_error($this->_connectionID);
 }
Exemplo n.º 2
0
	function ErrorMsg()
	{
		if ($this->_errorMsg !== false) return $this->_errorMsg;
		if (empty($this->_connectionID)) return @odbtp_last_error();
		return @odbtp_last_error($this->_connectionID);
	}