Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJörn Friedrich Dreyer <jfd@butonic.de>2012-07-19 14:12:17 +0400
committerJörn Friedrich Dreyer <jfd@butonic.de>2012-07-31 19:49:49 +0400
commit3c5670b662ea9e5ee36146f10f63faaadacb8187 (patch)
tree1ff301a55e38ff49ed4075024dd07081be4d2a93 /3rdparty
parentc03daca712fc63cefadf90765def280c57059e62 (diff)
comment extra timestamp quotation for oci8. Oracle can handle CURRENT_TIMESTAMP pretty well
Diffstat (limited to '3rdparty')
-rw-r--r--3rdparty/MDB2/Driver/Datatype/oci8.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/3rdparty/MDB2/Driver/Datatype/oci8.php b/3rdparty/MDB2/Driver/Datatype/oci8.php
index f633b0e2151..4d2e792a80e 100644
--- a/3rdparty/MDB2/Driver/Datatype/oci8.php
+++ b/3rdparty/MDB2/Driver/Datatype/oci8.php
@@ -241,10 +241,10 @@ class MDB2_Driver_Datatype_oci8 extends MDB2_Driver_Datatype_Common
* a DBMS specific format.
* @access protected
*/
- function _quoteTimestamp($value, $quote, $escape_wildcards)
- {
- return $this->_quoteText($value, $quote, $escape_wildcards);
- }
+ //function _quoteTimestamp($value, $quote, $escape_wildcards)
+ //{
+ // return $this->_quoteText($value, $quote, $escape_wildcards);
+ //}
// }}}
// {{{ _quoteTime()