From cbb7a11179b9c1c46e35f04d07d6386a44e400b2 Mon Sep 17 00:00:00 2001 From: wei <> Date: Sun, 23 Jul 2006 11:11:21 +0000 Subject: Update time-tracker demo and add simple dynamic SQLMap --- .../SQLMap/Statements/TPreparedStatementFactory.php | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'framework/DataAccess/SQLMap/Statements/TPreparedStatementFactory.php') diff --git a/framework/DataAccess/SQLMap/Statements/TPreparedStatementFactory.php b/framework/DataAccess/SQLMap/Statements/TPreparedStatementFactory.php index 41059934..52461983 100644 --- a/framework/DataAccess/SQLMap/Statements/TPreparedStatementFactory.php +++ b/framework/DataAccess/SQLMap/Statements/TPreparedStatementFactory.php @@ -11,36 +11,21 @@ class TPreparedStatementFactory { $this->_statement = $statement; $this->_commandText = $sqlString; - // $this->_statement = new TPreparedStatement(); -// $this->_statement->setSqlString($sqlString); } public function prepare() { - //$this->createParametersFromTextCommand(); - //return $this->_statement; $this->_preparedStatement = new TPreparedStatement(); $this->_preparedStatement->setPreparedSql($this->_commandText); if(!is_null($this->_statement->parameterMap())) - { $this->createParametersForTextCommand(); - //$this->evaluateParameterMap(); - } - //var_dump($this->_preparedStatement); return $this->_preparedStatement; } protected function createParametersForTextCommand() { - /*$matches = array(); - $string = $this->_statement->getSqlString(); - preg_match_all('/#([a-zA-Z0-9._]+)#/', $string, $matches); - $this->_statement->getParameterNames()->copyFrom($matches[0]);*/ - //var_dump($this->_statement); foreach($this->_statement->ParameterMap()->getProperties() as $prop) - { $this->_preparedStatement->getParameterNames()->add($prop->getProperty()); - } } } -- cgit v1.2.3