vote up 2 vote down star
1

When developing a mobile application on Windows Mobile, what are some of the database choices you've made?

Why did you make that choice? In particular we've got a mobile app that we're building which will have up to 360,000 records in some of the tables.

We were planning to use SQLCE 3.5 but we've got a number of drawbacks when working with large sets of data like this. Since data will be loaded into a DB on a desktop computer and then copied to the mobile device, the tables have to be re-indexed...

SQLite seems like an attractive alternative. Any advice/opinions?

flag

6 Answers

vote up 7 vote down check
  • SQLite is great, really fast, really portable, really tiny. widely used and time-tested. can't go wrong with it.
  • SQLite db files are crossplatform compatible, no need to reindex data when copying around. just copy the datafile to target and you're set.
  • MS-SQL CE is closed source, and far heavier (min 2MB vs. max 300KB of code), and size-limited (db file is 4GB max vs ~1TB total, 1GB BLOBs)

sounds like a no-brainer

link|flag
There's also a nice open source provider for visual studio sqlite.phxsoftware.com that looks pretty sweet. It even includes a design-time database designer similar to how you can create sqlce databases in visual studio. – Jason Down Feb 24 at 20:33
Whoa whoa whoa. It's not a no brainer by far. SqlCE has features that SqlLite doesn't. What is a no-brainer is to use System.Data.Common objects to write your code and START with SqlLite in a subclass that provides the SqlLite types. That means you can easily switch to SqlCE later if need be. – Quibblesome Feb 24 at 22:32
vote up 3 vote down

A secondary but important consideration is that Sqlite has been around and stable for years and years. The .NET portable database solutions are frequently deprecated. I think there are at least three products currently at some level of support.

link|flag
vote up 2 vote down

If you want to speed sqlite a bit more

  1. Try adding the index after you do the row inserts on the sqlite db. From my experience this helps a bit. ie don't create index before you insert, do it after

  2. If you don't need transactions during the bulk insert using try

     db.execDML("PRAGMA synchronous = OFF;");
    
    
     // don't count changes
     db.execDML("PRAGMA count_changes = 0;");
    
    
     // turn journaling off
     db.execDML("PRAGMA journal_mode = OFF;");
    

Your bulk insert will scream, I had speed ups to 5+ times.

Note : You will you need 3.6.7 or later for the journal_mode pragma

link|flag
vote up 1 vote down

I personally think you've hit upon the right idea. SqlLite is fast, cute as a barrel of ickle kittens and just generally amazing. On an embedded device with only one client it is awesome.

As i've commented in Javier's post I would suggest you focus on using the System.Data.Common types and isolating the SqlLite types through inheritance so if you do need to switch for better desktop integration or the better feature set its very easy to do.

link|flag
vote up 2 vote down

Just as an FYI, here's a benchmark I recently ran on both (with a home-grown bulk load utility in C#):

Details:

  • Bulk insert of ~165,000 rows of data to a single table
  • Insert data came from a text file (CSV file, though was pipe-delimited)
  • Data was a mix of strings, integers, currency, floats etc.
  • Table had 28 columns
  • Only primary key index was used during the insert to speed up inserts

For SqlCe I tried two approaches:

  • parameterized query, using a Prepare() and a single transaction for the entire insert.
  • SqlCeResultSet (updatable), with an SqlCeUpdatableRecord

For SQLite I tried the following:

  • parameterized query, using a Prepare() and a single transaction for the entire insert.

Here were the approximate time in seconds:

  • SqlCe with Parm query - 48s
  • SqlCe with resultset - 16s
  • SQLite with Parm query - 11s

As you can see, SQLite was the fastest, not only when comparing both databases with parameterized queries, but also compared to an updateable resultset (which is considered the best and fastest way by many when it comes to bulk inserts in sqlce).

I should note that I used the SQLite.Net data provider for the SQLite code. For SqlCe I used the v3.5 SP1.

Another interesting point. The SqlCe database was approx 29 MB after I ran the bulk insert. The SQLite database was approx 23 MB.

link|flag
SqlLite wins by a decent margin with selects, selects with joins and inserts. I've tested all of these scenarios in the past and if perf is your main concern then SqlLite is a no brainer. It's worth noting that Db40 does win by FAR in v.simple select scenarios though. – Quibblesome Feb 24 at 22:34
Can you cite a published benchmark (or publish your own and cite that)? – brian Mar 26 at 20:22
vote up 2 vote down

I like the sqlite solution. Extremely small and simple to maintain.

link|flag
1  
-1 unless you can actually compare that to sqlce -it's small and easy to maintain as well, so there's really no point of reference here. – Joel Coehoorn Feb 24 at 19:59

Your Answer

Get an OpenID
or

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