Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to turn an MSSQL database to SQLite database for Android

I have an MSSQL database. I want to use it in an Android app. I apparently need to turn it to an SQLite database. How I can do that? All I can do in SQL is getting a .bak file which seems useless for my purpose so far. Can you tell me how I should get the database from Microsoft SQL Management Console and how I should add to my Android project? Thanks.

like image 576
jason Avatar asked Aug 20 '15 11:08

jason


People also ask

How is SQLite different from other database approach in android?

SQLite is file-based. It is different from other SQL databases because unlike most other SQL databases, SQLite does not have separate server process. Main components of SQL are Data Definition Language(DDL), Data Manipulation Language(DML), Data Control Language(DCL).


1 Answers

You can try DBConvert

https://dbconvert.com/sqlite/mssql/

DBConvert for SQLite & MSSQL

SQLite → MS SQL Server, MS SQL Dump
SQL Server → SQLite, MS SQL Dump
SQLite ↔ SQL Azure
SQLite ↔ Amazon RDS

DBSync for SQLite & MSSQL

SQLite ↔ Microsoft SQL Server
SQLite ↔ SQL Azure
SQLite ↔ Amazon RDS
like image 108
Ashraf Avatar answered Oct 19 '22 11:10

Ashraf