blob: 524619834385d6fb05630c46050fd40e44932024 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
class TPreparedStatementFactory
{
private $_statement;
private $_preparedStatement;
private $_parameterPrefix = 'param';
private $_commandText;
public function __construct($statement, $sqlString)
{
$this->_statement = $statement;
$this->_commandText = $sqlString;
}
public function prepare()
{
$this->_preparedStatement = new TPreparedStatement();
$this->_preparedStatement->setPreparedSql($this->_commandText);
if(!is_null($this->_statement->parameterMap()))
$this->createParametersForTextCommand();
return $this->_preparedStatement;
}
protected function createParametersForTextCommand()
{
foreach($this->_statement->ParameterMap()->getProperties() as $prop)
$this->_preparedStatement->getParameterNames()->add($prop->getProperty());
}
}
?>
|