The easiest way to import data from another database, say Microsoft Access is as follows:
·define a new table in a SQLite database
.Import the original (dbf) table into Access (Access reads most types of DB with Import)
·export the table from Access with tabs as field seperators and no quotes around text fields
·get the exported data in SQLite with COPY FROM
In the case of EasySQLite I had exported the programs table from my Access 2000 database to g:\jans\easySQLite\q_export.txt
Next within EasySQLite I did create a new programs table:
create table programs (id integer primary key, name, description, size, category
Finally I copied data from the q_export.txt file into the programs table with:
copy programs from "g:\jans\easySQLite\q_export.txt"
(This is part of the EasySQLight help, just added a few things)
