Is there a tool to migrate an SQLite database to SQL Server (both the structure and data)?
sqlite-manager, firefox add-on: allows you to export an SQLite database in a SQL script.
Data Base>Export Database>Export to file
(Correction firefox 35 bugg obliged to correct the extension code as indicate to the following web page: How to fix your optional sqlite manager module to work)
Command line :
sqlite3 DB_name .dump > DB_name.sql
exports the sqlite database in a SQL script.
From url : http://doc.ubuntu-fr.org/sqlite.