summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-03-19 21:52:10 +0100
committerTimothy Warren <tim@timshomepage.net>2012-03-19 21:52:10 +0100
commitd2ff0bc1336e106e4b45abe7ee176bf6b9496b6e (patch)
treef91d60212cc104f445005e7a4242439ed9ee9de8 /system/database/drivers/oci8
parent833d504a91f7c85fa2985bcff5016a052972bd7a (diff)
Removed pointless _prep_sql methods
Diffstat (limited to 'system/database/drivers/oci8')
-rw-r--r--system/database/drivers/oci8/oci8_driver.php20
1 files changed, 2 insertions, 18 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index 070d58a34..8d7040618 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -180,26 +180,10 @@ class CI_DB_oci8_driver extends CI_DB {
{
if ( ! is_resource($this->stmt_id))
{
- $this->stmt_id = oci_parse($this->conn_id, $this->_prep_query($sql));
+ $this->stmt_id = oci_parse($this->conn_id, $sql);
}
}
-
- // --------------------------------------------------------------------
-
- /**
- * Prep the query
- *
- * If needed, each database adapter can prep the query string
- *
- * @access private called by execute()
- * @param string an SQL query
- * @return string
- */
- private function _prep_query($sql)
- {
- return $sql;
- }
-
+
// --------------------------------------------------------------------
/**