I would like to develop for Windows Phone 7 but the lack of database support still blocks me. Has anyone found a good library, stack to use for accessing local database from WinPhone7? Can you post links/examples of good practices to select/insert data in DB from a WinPhone7 application?

Thanks in advance ! c.

[edited] any updates available?

link|improve this question

56% accept rate
possible duplicate of stackoverflow.com/questions/3147078/… – Matt Lacey Sep 28 '10 at 10:59
any of these are no-SQL? Hate SQL... – Sergey Aldoukhov Oct 22 '10 at 17:23
Mango brings integrated SQL.... – Egon Apr 16 '11 at 18:08
Well, Mango brings Sql without the Sql... Queries will be Linq only, no T-Sql allowed. – Joel Shea Jun 3 '11 at 10:41
feedback

7 Answers

up vote 28 down vote accepted

There are lots of options:

WinPhone7Db
Perst
SQLite (and here)
siaqodb
db4o
Ninja Database Pro
Rapid Repository
Sterling
Effiproz
SQL Compact Edition will be coming in the "Mango" update - due later this year

link|improve this answer
did anyone tried db4o? is it good to use? – Buju Dec 13 '10 at 15:48
2  
Sterling is also a good one and the author is very active in the forum. sterling.codeplex.com – Matthieu Jan 16 '11 at 21:53
I use sqlitewindowsphone.codeplex.com and I'm very satisifed with it – pivotnig Apr 21 '11 at 20:34
I used Perst, very satisfied. – wizzard0 Jan 20 at 16:46
feedback

Take a look at winphone7db. This project implements a Isolated Storage (IsolatedStorage) based database for Windows Phone 7. The database consists of table object, each one supporting any number of columns.

Or you can store data on the internet and use webservices.

link|improve this answer
feedback

Check out FileDb - its free, 100% .NET, has tiny footprint and its relational using LINQ. www.eztools-software.com/tools/filedb

link|improve this answer
feedback

A few helpful articles about Local Database in Windows Phone 7.1 Mango:

Local Database Overview for Windows Phone

Windows Phone Mango Local Database: mapping and database operations

link|improve this answer
feedback

Cris,

We just came out with Ninja Database Lite for Windows Phone 7, Silverlight, and .NET 3.5 and higher. It is free until October 31st, 2010.

http://www.kellermansoftware.com/t-ninja-forums.aspx

Thanks, Greg

link|improve this answer
feedback

You'll be able to use Microsoft's SQL CE with the upcoming tools update due out in May. When end users will have Mango is another story though :)

link|improve this answer
feedback

There is a local database coming in Windows Phone 7.1 / Mango - take a look at the MSDN pre-release documentation here: http://msdn.microsoft.com/en-us/library/hh202860%28v=VS.92%29.aspx

You'll need to use Linq to SQL and the databases are still bound to individual isolated application storage contexts, but otherwise should be as you expect =)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.