SqLite Question

Bill Norris

Active Member
Licensed User
Longtime User
I am currently using the trial version, so I am unable to determine a few things about the sql library. Primary questions are:

Will I have to install a separate sql engine to use sql lite, or does the library contain the necessary components?

Also, If the database was created using MSSQL, will it be usable with sql lite?


Thanks,
Bill
 

DouglasNYoung

Active Member
Licensed User
Longtime User
Bill,
You don't need any SQL engine as that is inherent in Android - The SQL library just gives you hooks into the engine.
The data will need to be exported from MSSql and imported into SQLite as SQLite has its own format, which uses a single file which you specify the name.

Cheers,
Douglas
 
Upvote 0
Top