Пример #1
0
 /**
  *
  * Prepares an SQL statement for execution.
  *
  * @param string $statement The SQL statement to prepare for execution.
  *
  * @param array $options Set these attributes on the returned
  * PDOStatement.
  *
  * @return \PDOStatement
  *
  * @see http://php.net/manual/en/pdo.prepare.php
  *
  */
 public function prepare($statement, $options = null)
 {
     $result = $this->pdo->prepare($statement, $options);
     $this->logProfiles(__FUNCTION__);
     return $result;
 }