diff options
author | Timothy Warren <tim@timshomepage.net> | 2012-03-19 21:52:10 +0100 |
---|---|---|
committer | Timothy Warren <tim@timshomepage.net> | 2012-03-19 21:52:10 +0100 |
commit | d2ff0bc1336e106e4b45abe7ee176bf6b9496b6e (patch) | |
tree | f91d60212cc104f445005e7a4242439ed9ee9de8 /system/database/drivers/cubrid/cubrid_driver.php | |
parent | 833d504a91f7c85fa2985bcff5016a052972bd7a (diff) |
Removed pointless _prep_sql methods
Diffstat (limited to 'system/database/drivers/cubrid/cubrid_driver.php')
-rw-r--r-- | system/database/drivers/cubrid/cubrid_driver.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/system/database/drivers/cubrid/cubrid_driver.php b/system/database/drivers/cubrid/cubrid_driver.php index 244707395..32bd8a8b2 100644 --- a/system/database/drivers/cubrid/cubrid_driver.php +++ b/system/database/drivers/cubrid/cubrid_driver.php @@ -178,30 +178,12 @@ class CI_DB_cubrid_driver extends CI_DB { */ function _execute($sql) { - $sql = $this->_prep_query($sql); return @cubrid_query($sql, $this->conn_id); } // -------------------------------------------------------------------- /** - * 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 - */ - function _prep_query($sql) - { - // No need to prepare - return $sql; - } - - // -------------------------------------------------------------------- - - /** * Begin Transaction * * @access public |