It\'s possible to run more than one command in the direct SQL execution in SQlite Manager? (useful if you insert a lot of data)
e.g.
insert into Test
Perhaps you may work executemany() method instead of execute()
Something like:
values = [ ("Thomas", 25), ("Peter", 29) ] conn.executemany("insert into TestTable (Name, Age) values (?, ?)", values)
Will work fine.