@@ -321,14 +321,13 @@ def dumpTable(self, foundData=None):
321321 if Backend .getIdentifiedDbms () in (DBMS .MYSQL , DBMS .PGSQL , DBMS .HSQLDB ):
322322 query = rootQuery .blind .query % (agent .preprocessField (tbl , column ), conf .db , conf .tbl , sorted (colList , key = len )[0 ], index )
323323 elif Backend .getIdentifiedDbms () in (DBMS .ORACLE , DBMS .DB2 ):
324- query = rootQuery .blind .query % (agent .preprocessField (tbl , column ),
325- tbl .upper () if not conf .db else ("%s.%s" % (conf .db .upper (), tbl .upper ())),
326- index )
324+ query = rootQuery .blind .query % (agent .preprocessField (tbl , column ), tbl .upper () if not conf .db else ("%s.%s" % (conf .db .upper (), tbl .upper ())), index )
327325 elif Backend .isDbms (DBMS .SQLITE ):
328326 query = rootQuery .blind .query % (agent .preprocessField (tbl , column ), tbl , index )
329-
330327 elif Backend .isDbms (DBMS .FIREBIRD ):
331328 query = rootQuery .blind .query % (index , agent .preprocessField (tbl , column ), tbl )
329+ elif Backend .isDbms (DBMS .INFORMIX ):
330+ query = rootQuery .blind .query % (index , agent .preprocessField (tbl , column ), conf .db , tbl , sorted (colList , key = len )[0 ])
332331
333332 query = whereQuery (query )
334333
0 commit comments