Minor enhancement to be able to enumerate table columns and dump table

entries also if the database name is not provided by using the current
database on MySQL and MSSQL, the 'public' scheme on PostgreSQL and the
'USERS' TABLESPACE_NAME on Oracle.
Minor bug fix so that when the user provide as SELECT statement to be
processed an asterisk, now it also work if in the FROM there is no
database name specified.
Minor layout adjustments.
This commit is contained in:
Bernardo Damele
2008-11-12 22:53:25 +00:00
parent 81ed7c2086
commit 9329f8c9c4
6 changed files with 26 additions and 15 deletions

View File

@@ -372,7 +372,7 @@ def getValue(expression, blind=True, inband=True, fromUser=False, expected=None)
expression = cleanQuery(expression)
expression = expandAsteriskForColumns(expression)
value = None
value = None
if inband and conf.unionUse and kb.dbms:
value = __goInband(expression, expected)