Re: Export and Import SQLite data from LC Project?

2011-10-25 Thread Mark Schonewille
Hi John, Can't you transfer the entire database file? If not, you can just do a dump and import the resulting file or do a query and save the data to a text file, which you import the usual way. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage:

Re: Export and Import SQLite data from LC Project?

2011-10-25 Thread Pete
I don't think there's a built in way to do this in LC, you'd have to write some code. Alternatively, if you have sqlite3 on your computer, you could run it from LC and pass it the necessary commands to dump and restore the db. To dump the data, You'd need to send it a .mode command with a mode

Re: Export and Import SQLite data from LC Project?

2011-10-25 Thread Warren Samples
On 10/25/2011 02:34 PM, Mark Schonewille wrote: Hi John, Can't you transfer the entire database file? If not, you can just do a dump and import the resulting file or do a query and save the data to a text file, which you import the usual way. -- Best regards, Mark Schonewille Mark is