i want to create static database for windows phone 8 sdk. I dont know in windows phone what database have to use whether sqlite or sql server. Please help me. Thanks in advance.
Asked
Active
Viewed 1,559 times
3
-
1You can use MS Sql Server Compact DB (SQL CE), for further reference - http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh202860(v=vs.105).aspx – rs. Dec 27 '12 at 04:27
-
I was Looking for something similar and I found this http://stackoverflow.com/questions/13474029/sqlite-on-both-windows-phone-7-1-and-windows-phone-8 – Jaime Marín Dec 29 '12 at 03:26
-
possible duplicate of [How to create a Local Database in windows phone 8 app?](http://stackoverflow.com/questions/14556607/how-to-create-a-local-database-in-windows-phone-8-app) – nawfal Nov 12 '13 at 12:53
1 Answers
0
SQLite is a popular option for adding an in-process database to your Windows Phone Apps.
You might want to read this article to learn more:
Using the SQLite database engine with Windows Phone 8 apps
If you'd rather, a @rs points out above, you might also consider SQL Server Compact Edition. This article from the always awesome ErikEj should set you on the right path:
Generate a Windows Phone 8 Local Database DataContext from an existing database
HTH.

Rich Turner
- 10,800
- 1
- 51
- 68