On 11 Jan 2013, at 11:52am, kevnm67 <[email protected]> wrote: > I'm new to sql and having trouble figuring out how can I convert my .sql > file to a .db file?
Use a SQLite tool to dump to .csv format, then use a DB tool to import the .csv to DB format. Since this is a SQLite list, we can help with a good SQLite tool: http://www.sqlite.org/sqlite.html You might want ".mode csv". Simon. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

