PDA

View Full Version : dump table and db



subratatamal
31st December 2008, 12:03
I made a db in sqlite.i want to dump some of the tables from that db with data and structure using qt.Is there any way of doin it.Thanks in advance
Subrata

janus
31st December 2008, 16:38
Hi,

you can e.g. use the sqlite shell. Call it with QProcess and ".dump sometable". You can take a look at the sqliteman (http://sqliteman.com/)source if you need an example.