From c1bf63a2269583855ecca91a9ab67504b8c45eff Mon Sep 17 00:00:00 2001 From: Karim Kanso Date: Sat, 16 May 2020 11:32:12 +0100 Subject: [PATCH] Fix sqlite when dumping large tables --- plugins/generic/entries.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/generic/entries.py b/plugins/generic/entries.py index 204917925..395e50d13 100644 --- a/plugins/generic/entries.py +++ b/plugins/generic/entries.py @@ -131,6 +131,8 @@ class Entries(object): try: if Backend.isDbms(DBMS.INFORMIX): kb.dumpTable = "%s:%s" % (conf.db, tbl) + elif Backend.isDbms(DBMS.SQLITE): + kb.dumpTable = tbl else: kb.dumpTable = "%s.%s" % (conf.db, tbl)