Windows Phone and SQL Lite: what’s the current situation?

The last week I spoke at a Italian conference in Microsoft Italy called Windows Phone Developer Day about sharing code between Windows Phone and Windows 8. One of the topics was data access and how to share code to interact with a database between Windows Phone and Windows 8.

People was a bit confused and I got many questions because I told them that SQL Lite is supported by Windows Phone 8 but can’t be used at the moment. What does it mean?

Let’s make a step back: Windows Phone 7.5 has introduced support to relational databases thanks to SQL CE (as database engine) and LINQ to SQL (as manipulation library, to interact with the database using objects and classes instead of making queries). In Windows Phone 8 Microsoft has decided to go another way, in order to use a solution easier to port to Windows 8 and to other platforms: SQL Lite. In fact, this technology is cross platform and it’s available for Android, iOS, web application, client applications and much more. Probably you’ll have to rewrite the data access layer (due to the differences between technologies and languages), but you’ll be able to reuse the database.

Microsoft has worked with the team to provide an easy way to add SQL Lite to your Windows 8 and Windows Phone 8 project: the result is that, in the Visual Studio Gallery, you’ll find two extensions (one per platform) that can be used to add the SQL Lite engine to your project. The engine is written in native code: this means that you’ll need native code to interact with it and perform operations with the database.

And here comes the confusion I talked about in the beginning of the post: this extension allows you just to add the SQL Lite engine to your application, but doesn’t include a library to work with it using a high level language like C# or VB.NET. The problem is that, for the moment, this library doesn’t exist for Windows Phone 8: the result is that, even if you can add it, you don’t have a way to perform operations with a SQL Lite database, unless you write by yourself a wrapper to the native libraries.

Microsoft is committed into delivering a library as soon as possible, but at the moment we don’t have a release date yet.

On Windows 8 the situation is a bit different, because such libraries already exist: one of the most popular is sqlite-net, on which I talked about in a previous post. Unlucky, this library doesn’t work on Windows Phone 8, because it uses some features of the Windows Runtime that aren’t available in the Windows Phone subset.

In case you’re developing a Windows Phone application and you need to use a database, which are the possible solutions?

The first one is to keep using SQL CE, that works just fine in Windows Phone 8: it’s a very good solution in case you don’t need to port your application to Windows 8 or to another platform.

The second one is to use csharp-sqlite, that is a library published on Google Code that allows to use the SQL Lite engine in a C# application. The library is supported by Windows Phone 8, so you can use it to reuse your SQL Lite database in a Windows Phone application. The downside? The C# library is based on code that is part of the .NET framework and that is not available in the Windows Runtime. This means that you’ll be able to reuse the database, but not the data access layer of your application.

And the third solution? Simply just wait that a native library for Windows Phone 8 will be available Smile

This entry was posted in Uncategorized and tagged , . Bookmark the permalink.

5 Responses to Windows Phone and SQL Lite: what’s the current situation?

  1. Thanks you Matteo! I spent days to understand how to use SqLite in WP8…but with unsuccessful, for now I’m still using SQL CE.

  2. Philip Colmer says:

    When the native library is released, will it just be WP, or will it be Win8 as well? If just WP, I hope the code differences won’t be too significant.

    • qmatteoq says:

      I don’t have info at the moment but, as far as I know, the goal is to have something that can be shared between the two platforms

  3. Thanks for the update on SQLite support.

    I’m trying to upgrade my solution to WP8, and I’m using a password-protected SQL CE 3.5 database. It works fine in the emulator but on the Lumia 920 I get a “An exception of type ‘System.Data.SqlServerCe.SqlCeException’ occurred in Microsoft.Phone.Data.Internal.ni.dll but was not handled in user code” error, with some additional info “Incompatible Database Version. If this was a compatible file, run repair. For other cases refer to documentation. [ Db version = 4000000,Requested version = 3505053,File name = MyDbName.sdf ]

    Did support for password protected / encrypted databases go away?

    • qmatteoq says:

      Hi, that’s strange, the SQL CE compatibility should be the same as Windows Phone 7.5, including password protected databases. Can you send me a sample project I can play with to do some tests?
      Thanks!

Leave a Reply to Philip Colmer Cancel reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.