Click here to Skip to main content
15,891,951 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear all i am having data base created by sqlite it contains some tables with values

i want to use the same database tables with values in sqlserver how to import sqlite database into sqlserver

What I have tried:

Dear all i am having data base created by sqlite it contains some tables with values

i want to use the same database tables with values in sqlserver how to import sqlite database into sqlserver
Posted
Updated 18-Apr-16 22:24pm

1 solution

SQLite has a CLI: Command Line Shell For SQLite[^] which includes a .dump command which outputs your DB into a a text file containing the SQL code to create and populate the DB.
Run that as a query in SQL Server, and it should do the job.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900