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 6e7be5e commit 5556db8Copy full SHA for 5556db8
1 file changed
plugins/dbms/sqlite/connector.py
@@ -52,7 +52,7 @@ def connect(self):
52
self.checkFileDb()
53
54
try:
55
- self.connector = sqlite3.connect(database=self.db, timeout=conf.timeout)
+ self.connector = sqlite3.connect(database=self.db, check_same_thread=False, timeout=conf.timeout)
56
except sqlite3.OperationalError, msg:
57
raise sqlmapConnectionException, msg[0]
58
0 commit comments