Skip to content

Commit e2edebd

Browse files
committed
Patch for an Issue sqlmapproject#1069
1 parent 02d20cc commit e2edebd

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

plugins/generic/databases.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -772,6 +772,9 @@ def getSchema(self):
772772
return kb.data.cachedColumns
773773

774774
def _tableGetCount(self, db, table):
775+
if not db or not table:
776+
return None
777+
775778
if Backend.getIdentifiedDbms() in (DBMS.ORACLE, DBMS.DB2):
776779
db = db.upper()
777780
table = table.upper()

0 commit comments

Comments
 (0)