Patch for an Issue #1069

This commit is contained in:
Miroslav Stampar 2014-12-30 09:04:41 +00:00
parent 02d20ccd13
commit e2edebd406

View File

@ -772,6 +772,9 @@ class Databases:
return kb.data.cachedColumns
def _tableGetCount(self, db, table):
if not db or not table:
return None
if Backend.getIdentifiedDbms() in (DBMS.ORACLE, DBMS.DB2):
db = db.upper()
table = table.upper()