The SQLite WinRT wrapper is a CodePlex project that offers lightweight Windows Runtime (WinRT) APIs you can use to access the most common SQLite database functionality. The latest update of the library supports Windows Phone 8 development in addition to Windows 8 development. Download the update to begin accessing SQLite databases in your Windows Phone 8 apps.
Supported functionality
The WinRT API gives you a familiar programming model for implementing the following basic operations:- Opening a database (wraps the sqlite3_open_v2 function)
- Executing a single SQL statement (wraps the sqlite3_exec function)
- Creating a complex SQL statement (wraps the sqlite3_prepare16_v2 function)
- Binding parameters to a statement (wraps the sqlite3_bind_xyz functions)
- Iterating over statement results (wraps the sqlite3_step and sqlite3_column_xyz functions)
Examples
Here’s a simple example of opening a database named cities.db (in the app’s local folder) and then adding the contents of the Cities table to an ObservableCollection. You can then databind the collection to a ListBox or other control.C#
- async void AddToItemsCollection()
- {
- // Get the file from the local folder
- var file = await
- ApplicationData.Current.LocalFolder.GetFileAsync("cities.db");
- // Create a new SQLite instance for the file
- var db = new Database(file);
- // Open the database asynchronously
- await db.OpenAsync(SqliteOpenMode.OpenRead);
- // Prepare a SQL statement to be executed
- var statement = await db.PrepareStatementAsync(
- "SELECT rowid, CityName FROM Cities;");
- // Loop through all the results and add to the collection
- while (await statement.StepAsync())
- items.Add(statement.GetIntAt(0) + ": " + statement.GetTextAt(1));
- }
C#
- // Prepare a SQL statement to be executed with a parameter
- var statement = await db.PrepareStatementAsync(
- "SELECT rowid, CityName FROM Cities WHERE CityName LIKE ?;");
- // Bind the parameter value to the statement
- statement.BindTextParameterAt(1, "c%");
- // Loop through all the results and add to the collection
- while (await statement.StepAsync())
- items.Add(statement.GetIntAt(0) + ": " + statement.GetTextAt(1));
The API also supports collection-based access to the returned result, but it’s not enabled by default because it slows down processing and returns all columns as strings (rather than their underlying type). To use this feature, call the EnableColumnsProperty method like this:
C#
- // Prepare a SQL statement to be executed with a parameter
- var statement = await db.PrepareStatementAsync(
- "SELECT rowid, CityName FROM Cities;");
- // Enable access via the 'Columns' property. If you don't do this then
- // the Columns property will simply return null
- statement.EnableColumnsProperty();
- // Now you can access the columns by name (they will return strings)
- while (await statement.StepAsync())
- items.Add(statement.Columns["rowid"] + ": " + statement.Columns["CityName"]);
Read-only databases
Many apps contain read-only databases - for example, the list of cities used in the example here, or a list of product categories. These databases typically are deployed to the app’s install folder instead of to isolated storage. This can cause problems if SQLite needs to create temporary tables, indices, or logs: SQLite attempts to create the files in the same directory as the database, but the app doesn’t have write access to its installation folder. (See the debugging note at the end of this post.)You have two options for getting around this problem. The first is to use the temp_store pragma to force SQLite to use in-memory temporary tables and indices. This option is the easiest to use but might not be practical if it causes your app to use too much memory. The second option is to copy the database from the install folder to the isolated storage folder on the first run of your app. This uses more disk space and adds time to your first-boot experience, but if the database file is small it shouldn’t cause a noticeable delay. This also gives you the option of updating the database if you ever need to (after all, new product categories are created all the time!).
Another feature that needs to be avoided with read-only databases is the journal_mode pragma with a value of WAL (write-ahead logging). Although this has some performance benefits, it will also fail for databases in the app’s install folder since SQLite will attempt to create a journal file there (and fail).
Debugging note. During the development process, Windows Phone gives your app write access to its installation folder to facilitate some debugger operations. Developers typically aren’t affected by this because they’re already conditioned not to write files to the install folder, but it can cause issues if you use a read-only database and forget to set the temp_store pragma. The app will appear to work during your pre-submission testing, but as soon as you submit it to the Store the app will fail because it no longer has write access to the folder.
DIGITAL JUICE
No comments:
Post a Comment
Thank's!