summaryrefslogtreecommitdiff
path: root/framework/DataAccess/SQLMap/Statements/TStaticSql.php
diff options
context:
space:
mode:
Diffstat (limited to 'framework/DataAccess/SQLMap/Statements/TStaticSql.php')
-rw-r--r--framework/DataAccess/SQLMap/Statements/TStaticSql.php19
1 files changed, 19 insertions, 0 deletions
diff --git a/framework/DataAccess/SQLMap/Statements/TStaticSql.php b/framework/DataAccess/SQLMap/Statements/TStaticSql.php
new file mode 100644
index 00000000..bf6e4a18
--- /dev/null
+++ b/framework/DataAccess/SQLMap/Statements/TStaticSql.php
@@ -0,0 +1,19 @@
+<?php
+
+class TStaticSql extends TComponent
+{
+ private $_preparedStatement;
+
+ public function buildPreparedStatement($statement, $sqlString)
+ {
+ $factory = new TPreparedStatementFactory($statement, $sqlString);
+ $this->_preparedStatement = $factory->prepare();
+ }
+
+ public function getPreparedStatement()
+ {
+ return $this->_preparedStatement;
+ }
+}
+
+?> \ No newline at end of file