summaryrefslogtreecommitdiffstatshomepage
path: root/src/SemanticScuttle/db/oracle.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/SemanticScuttle/db/oracle.php')
-rw-r--r--src/SemanticScuttle/db/oracle.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/SemanticScuttle/db/oracle.php b/src/SemanticScuttle/db/oracle.php
index f1a45a6..3e017d4 100644
--- a/src/SemanticScuttle/db/oracle.php
+++ b/src/SemanticScuttle/db/oracle.php
@@ -16,6 +16,8 @@ if(!defined("SQL_LAYER"))
define("SQL_LAYER","oracle");
+require_once 'QueryBuilder.php';
+
/**
* @package dbal_oracle
* Oracle Database Abstraction Layer
@@ -36,6 +38,14 @@ class sql_db
var $dbname;
var $server;
/*2023-12-20 end */
+
+ public $QueryBuilder;
+
+ public function __construct()
+ {
+ $this->QueryBuilder = new QueryBuilder();
+ }
+
//
// Constructor
//