Skip to content
Snippets Groups Projects
Commit 73fb0f49 authored by Giovannoni Laurent's avatar Giovannoni Laurent
Browse files

fix: pb with oracle object

parent 271f1a97
No related branches found
No related tags found
No related merge requests found
......@@ -493,7 +493,8 @@ class dbquery extends functions
case 'POSTGRESQL' : return @pg_fetch_object($this->query);
case 'ORACLE' :
$myObject = @oci_fetch_object($this->query);
$myLowerObject = false;
//$myLowerObject = false;
$myLowerObject = new stdClass();
if (isset($myObject) && ! empty($myObject)) {
foreach ($myObject as $key => $value) {
$myKey = strtolower($key);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment