summaryrefslogtreecommitdiffstats
path: root/system/database/drivers/oci8/oci8_driver.php
diff options
context:
space:
mode:
authorTimothy Warren <tim@timshomepage.net>2012-03-20 00:07:07 +0100
committerTimothy Warren <tim@timshomepage.net>2012-03-20 00:07:07 +0100
commit48e1d2e78efea9f41e5ae65b600d35bb87b2e40f (patch)
treedd564d27bd7464f106d13672b58241f21f30e1e7 /system/database/drivers/oci8/oci8_driver.php
parent9e560a4c4828901a562f5459157ba0f76612c34f (diff)
Revert "Oci8 access modifiers"
Diffstat (limited to 'system/database/drivers/oci8/oci8_driver.php')
-rw-r--r--system/database/drivers/oci8/oci8_driver.php26
1 files changed, 14 insertions, 12 deletions
diff --git a/system/database/drivers/oci8/oci8_driver.php b/system/database/drivers/oci8/oci8_driver.php
index e7b744bd3..8d7040618 100644
--- a/system/database/drivers/oci8/oci8_driver.php
+++ b/system/database/drivers/oci8/oci8_driver.php
@@ -53,33 +53,33 @@
class CI_DB_oci8_driver extends CI_DB {
- public $dbdriver = 'oci8';
+ var $dbdriver = 'oci8';
// The character used for excaping
- public $_escape_char = '"';
+ var $_escape_char = '"';
// clause and character used for LIKE escape sequences
- public $_like_escape_str = " escape '%s' ";
- public $_like_escape_chr = '!';
+ var $_like_escape_str = " escape '%s' ";
+ var $_like_escape_chr = '!';
/**
* The syntax to count rows is slightly different across different
* database engines, so this string appears in each driver and is
* used for the count_all() and count_all_results() functions.
*/
- public $_count_string = "SELECT COUNT(1) AS ";
- public $_random_keyword = ' ASC'; // not currently supported
+ var $_count_string = "SELECT COUNT(1) AS ";
+ var $_random_keyword = ' ASC'; // not currently supported
// Set "auto commit" by default
- public $_commit = OCI_COMMIT_ON_SUCCESS;
+ var $_commit = OCI_COMMIT_ON_SUCCESS;
// need to track statement id and cursor id
- public $stmt_id;
- public $curs_id;
+ var $stmt_id;
+ var $curs_id;
// if we use a limit, we will add a field that will
// throw off num_fields later
- public $limit_used;
+ var $limit_used;
/**
* Non-persistent database connection
@@ -214,7 +214,7 @@ class CI_DB_oci8_driver extends CI_DB {
* KEY OPTIONAL NOTES
* name no the name of the parameter should be in :<param_name> format
* value no the value of the parameter. If this is an OUT or IN OUT parameter,
- * this should be a reference to a publiciable
+ * this should be a reference to a variable
* type yes the type of the parameter
* length yes the max size of the parameter
*/
@@ -781,5 +781,7 @@ class CI_DB_oci8_driver extends CI_DB {
}
+
+
/* End of file oci8_driver.php */
-/* Location: ./system/database/drivers/oci8/oci8_driver.php */ \ No newline at end of file
+/* Location: ./system/database/drivers/oci8/oci8_driver.php */