minor update

This commit is contained in:
Miroslav Stampar 2011-01-24 17:41:36 +00:00
parent b0dc6c24eb
commit 0eea5665b2
3 changed files with 27 additions and 0 deletions

View File

@ -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)

View File

@ -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 []

View File

@ -409,6 +409,9 @@
<inband query="SELECT %s FROM %s"/>
<blind query="SELECT FIRST 1 SKIP %d %s FROM %s" count="SELECT COUNT(*) FROM %s"/>
</dump_table>
<search_db/>
<search_table/>
<search_column/>
</dbms>
<!-- http://dev.mysql.com/tech-resources/articles/maxdb-php-ready-for-web.html -->