/**
  * Checks whether a transaction is currently active.
  *
  * @return boolean TRUE if a transaction is currently active, FALSE otherwise.
  */
 public function isActive()
 {
     return $this->_conn->isTransactionActive();
 }