summaryrefslogtreecommitdiffstats
path: root/codebase/db_common.php
diff options
context:
space:
mode:
Diffstat (limited to 'codebase/db_common.php')
-rw-r--r--codebase/db_common.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/codebase/db_common.php b/codebase/db_common.php
index 7d738ee..8b5935a 100644
--- a/codebase/db_common.php
+++ b/codebase/db_common.php
@@ -930,6 +930,9 @@ class ArrayDBDataWrapper extends DBDataWrapper{
if ($res->index < sizeof($res->data))
return $res->data[$res->index++];
}
+ public function select($sql){
+ return new ArrayQueryWrapper($this->connection);
+ }
public function query($sql){
throw new Exception("Not implemented");
}