don't let sqlmapNoneDataException for one table to break whole dumpAll()

This commit is contained in:
Miroslav Stampar 2011-04-14 20:56:12 +00:00
parent dbbaefa79d
commit 384ca98ded

View File

@ -1493,6 +1493,7 @@ class Enumeration:
conf.db = db
for table in tables:
try:
conf.tbl = table
kb.data.cachedColumns = {}
kb.data.dumpedTable = {}
@ -1501,6 +1502,10 @@ class Enumeration:
if data:
conf.dumper.dbTableValues(data)
except sqlmapNoneDataException:
infoMsg = "skipping table '%s'" % table
logger.info(infoMsg)
def dumpFoundColumn(self, dbs, foundCols, colConsider):
if not dbs: