fix for Feature #136

This commit is contained in:
Miroslav Stampar
2010-08-31 14:25:37 +00:00
parent e810fe7b0b
commit c4040ab297
3 changed files with 12 additions and 14 deletions

View File

@@ -68,16 +68,6 @@ class Enumeration(GenericEnumeration):
return []
def getColumns(self, onlyColNames=False):
errMsg = "on SQLite it is not possible to enumerate database "
errMsg += "table columns"
if conf.dumpTable or conf.dumpAll:
errMsg += ", provide them with -C option"
raise sqlmapUnsupportedFeatureException, errMsg
logger.warn(errMsg)
def dumpAll(self):
errMsg = "on SQLite you must specify the table and columns to dump"
raise sqlmapUnsupportedFeatureException, errMsg