Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1f53a5 commit fca57daCopy full SHA for fca57da
1 file changed
plugins/generic/databases.py
@@ -331,6 +331,8 @@ def getTables(self, bruteForce=None):
331
query = rootQuery.blind.query % (kb.data.cachedTables[-1] if kb.data.cachedTables else " ")
332
elif Backend.getIdentifiedDbms() in (DBMS.SQLITE, DBMS.FIREBIRD):
333
query = rootQuery.blind.query % index
334
+ elif Backend.isDbms(DBMS.HSQLDB):
335
+ query = rootQuery.blind.query % (index, unsafeSQLIdentificatorNaming(db))
336
else:
337
query = rootQuery.blind.query % (unsafeSQLIdentificatorNaming(db), index)
338
0 commit comments