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 d46234e commit 6f61fc0Copy full SHA for 6f61fc0
1 file changed
plugins/generic/search.py
@@ -200,7 +200,7 @@ def searchTable(self):
200
if isinstance(values, basestring):
201
values = [values]
202
for value in values:
203
- newValues.append(["SQLite_%s" % METADB_SUFFIX, value])
+ newValues.append(["SQLite%s" % METADB_SUFFIX, value])
204
205
values = newValues
206
@@ -259,7 +259,7 @@ def searchTable(self):
259
if tblConsider == "2":
260
continue
261
else:
262
- foundTbls["SQLite_%s" % METADB_SUFFIX] = []
+ foundTbls["SQLite%s" % METADB_SUFFIX] = []
263
264
for db in foundTbls.keys():
265
db = safeSQLIdentificatorNaming(db)
0 commit comments