diff --git a/plugins/dbms/access/enumeration.py b/plugins/dbms/access/enumeration.py
index 7b620e7a6..51ea18bf9 100644
--- a/plugins/dbms/access/enumeration.py
+++ b/plugins/dbms/access/enumeration.py
@@ -42,6 +42,18 @@ class Enumeration(GenericEnumeration):
return []
+ def searchTable(self):
+ warnMsg = "on Microsoft Access it is not possible to search tables"
+ logger.warn(warnMsg)
+
+ return []
+
+ def searchColumn(self):
+ warnMsg = "on Microsoft Access it is not possible to search columns"
+ logger.warn(warnMsg)
+
+ return []
+
def getCurrentUser(self):
warnMsg = "on Microsoft Access it is not possible to enumerate the current user"
logger.warn(warnMsg)
diff --git a/plugins/dbms/firebird/enumeration.py b/plugins/dbms/firebird/enumeration.py
index d489dbc9e..10974e137 100644
--- a/plugins/dbms/firebird/enumeration.py
+++ b/plugins/dbms/firebird/enumeration.py
@@ -31,3 +31,15 @@ class Enumeration(GenericEnumeration):
logger.warn(warnMsg)
return []
+
+ def searchTable(self):
+ warnMsg = "on Firebird it is not possible to search tables"
+ logger.warn(warnMsg)
+
+ return []
+
+ def searchColumn(self):
+ warnMsg = "on Firebird it is not possible to search columns"
+ logger.warn(warnMsg)
+
+ return []
diff --git a/xml/queries.xml b/xml/queries.xml
index 1b2bc4a63..44465f605 100644
--- a/xml/queries.xml
+++ b/xml/queries.xml
@@ -409,6 +409,9 @@
+
+
+