Facile\DoctrineMySQLComeBack\Doctrine\DBAL\Connection::prepareUnwrapped PHP Method

prepareUnwrapped() public method

do not use, only used by Statement-class needs to be public for access from the Statement-class.
public prepareUnwrapped ( $sql )
    public function prepareUnwrapped($sql)
    {
        // returns the actual statement
        return parent::prepare($sql);
    }

Usage Example

 /**
  *
  */
 private function createStatement()
 {
     $this->stmt = $this->conn->prepareUnwrapped($this->sql);
 }