/**
  *
  * Is a transaction currently active?
  *
  * @return bool
  *
  * @see http://php.net/manual/en/pdo.intransaction.php
  *
  */
 public function inTransaction()
 {
     $result = $this->pdo->inTransaction();
     $this->logProfiles(__FUNCTION__);
     return $result;
 }