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
Alternatively, you could write the statement as:
insert into TestTable (Name, Age) values ("Thomas", 25), ("Peter", 29) ;
Edit: Please note, as per @DominiqueJacquel's comment, that this will only work in SQLite version 3.7.11+