On 27 Jun 2011, at 1:38pm, Gilles Ganault wrote:

> I have a 87MB file in DBF format that I'd like to import into SQLite.
> 
> What is the best tool for this, free or affordable?

Dump the contents as text and use the SQLite command-line shell to import it.

<http://www.sqlite.org/sqlite.html>

For the text format, if the data is simple and doesn't include tricky 
characters, you can use CSV format.  If that's not the case you might try 
dumping as SQL commands and using the command-line shell to '.read' them.

Simon.
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to