/**
  * Fetches extended error information associated with the last database operation.
  *
  * @return array The last error information.
  */
 public function errorInfo()
 {
     $this->connect();
     return $this->_conn->errorInfo();
 }