Prado\Data\SqlMap\Statements\TPreparedStatementFactory::prepare PHP Метод

prepare() публичный Метод

public prepare ( )
    public function prepare()
    {
        $this->_preparedStatement = new TPreparedStatement();
        $this->_preparedStatement->setPreparedSql($this->_commandText);
        if ($this->_statement->parameterMap() !== null) {
            $this->createParametersForTextCommand();
        }
        return $this->_preparedStatement;
    }