We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 02d20cc commit e2edebdCopy full SHA for e2edebd
plugins/generic/databases.py
@@ -772,6 +772,9 @@ def getSchema(self):
772
return kb.data.cachedColumns
773
774
def _tableGetCount(self, db, table):
775
+ if not db or not table:
776
+ return None
777
+
778
if Backend.getIdentifiedDbms() in (DBMS.ORACLE, DBMS.DB2):
779
db = db.upper()
780
table = table.upper()
0 commit comments