Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit f9d330e

Browse files
committed
Fix for that Firebird column data types issue (tec=EU)
1 parent 99bc4a9 commit f9d330e

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

plugins/generic/databases.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -551,6 +551,9 @@ def getColumns(self, onlyColNames=False, colTuple=None, bruteForce=None):
551551
if len(columnData) == 1:
552552
columns[name] = None
553553
else:
554+
if Backend.isDbms(DBMS.FIREBIRD):
555+
columnData[1] = FIREBIRD_TYPES.get(columnData[1], columnData[1])
556+
554557
columns[name] = columnData[1]
555558

556559
if conf.db in kb.data.cachedColumns:

0 commit comments

Comments
 (0)