Mobile databases: SQLite and SQLite alternatives for Android and iOS

UPDATED 2023 A long time ago at Droidcon Berlin, we noticed a lot of questions around databases. Many people weren’t aware of SQLite alternatives and the differentiation between databases and Object-Relational Mappers (ORMs). Therefore, we followed up with an overview of the local database landscape (Edge Databases), which we maintain ever since. We just updated the comparison table in June 2023.

Why use a local database on mobile?

There are some advantages associated with using a local database (Edge Database):

  • Always works: full offline modus for apps that depend on stored data
  • Manageable costs: Frugal on bandwidth for apps that depend on stored data
  • Speed: fast and predictable performance independent from network availability
  • Data Privacy: personal data can be stored with the user, where some say they belong)

Do people still use SQLite in 2023?

In 2023, SQLite is still a widely used database. On DB-Engines, SQLite is currently in the top 10 and its ranking has been rather stable in the last 10 years.

However, with SQLite being over 20 years old, the market has changed significantly and a large number of more modern solutions, more suitable for new markets like IoT and Mobile, have become available. One has a lot more and typically faster options when choosing a local Edge Database nowadays.

Note: DB-Engines lists 400+ databases as of 2023; the database of databases, which also includes hobby projects, counts 700+ databases. While the database market is very crowded and indeed vibrant, the Edge Database market is still a small market with only few notable players. In short: In the realm of Edge Databases, despite such a dominant incumbent like SQLite, there is still room for innovation and advancements. 

What are the advantages and disadvantages of working with SQLite?

The most established mobile database – one could even say the only “established” – mobile database is SQLite. This may be due to SQLite being around since the year 2000 and being embedded with iOS and Android since the beginning. SQLite is a relational database.

In our previous post, we presented advantages and disadvantages of using raw SQLite without any tools as we had gathered them with a group of developers. Based on this, we generated a more generic overview of advantages and disadvantages of using raw SQLite:

Advantages:

  • Toolchain, e.g. DB browser
  • No dependencies, is included with Android and iOS
  • Developers can define exactly the data schema they want
  • Developers have full control, e.g. handwritten SQL queries
  • SQL is a powerful and established query language, and SQLite supports most of it
  • Debuggable data: developers can grab the database file and analyze it
  • Rock-solid, widely used technology, established since the year 2000

Disadvantages:

  • Using SQLite means a lot of boilerplate code and thus inefficiencies (also in the long run with the app maintenance)
  • 1 MB BLOB Limitation on Android
  • No compile time checks (e.g. SQL queries)
  • The performance of SQLite is unreliable
  • SQL is another language to master
  • SQL queries can get long and complicated
  • Testability (how to mock a database?)
  • Especially when database views are involved, maintainability may suffer with SQLite

What are SQLite alternatives?

If you want to replace SQLite completely, there are also quite a few alternative databases: Couchbase Lite, Interbase, ObjectBox, LevelDB, Oracle Berkeley DB (formerly Oracle’s mobile database was “Oracle Database Lite”), Realm, SnappyDB, Sparksee Mobile (graph database, brand-new at the time of this article), SQL Anywhere, SQL Server Compact (discontinued), and UnQLite.

Object-Relational Mappers (ORMs) are not really SQLite alternatives, but a layer that sits on top of SQLite and makes it easier to use (object/relational mapping).  So, if you simply find it unpleasant to write a lot of SQL and boilerplate code, you can use an object abstraction on top of SQLite, e.g. greenDAO

To give you an overview, we have compiled a comprehensive comparison table (if you’re on mobile, view the full table here):

Edge Database Android / iOS* Type of data stored Sync Central Sync P2P Offline Sync Data level encryption License / business model Flutter support Vector (AI) support  Short description Minimum Footprint size Company
Azure SQL Edge  No Relational DB for IoT No No No will provide encryption Proprietary No No Designed as a SQL database for the IoT edge; however, due to the footprint it is no Edge Database 500 MB+ Microsoft
Couchbase Mobile Android / iOS JSON Documents / NoSQL db Yes Yes No Database encryption with SQLCipher (256-bit AES) Partly proprietary, partly open-source, Couchbase Lite is BSL 1.1 Unofficial Flutter plugin for Couchbase Lite Community Edition No Embedded / portable database with P2P and central synchronization (sync) support; pricing upon request; some restrictions apply for the free version. Secure SSL. < 3,5 MB Couchbase
extremeDB iOS In-memory relational DB, hybrid persistence No No No AES encryption Proprietary No Yes, vector support available, nothing more yet Embedded relational database < 1 MB McObject LLC
InterBase ToGo / IBLite Android / iOS Relational No No No 256 bit AES strength encryption Proprietary No No Embeddable SQL database. < 1 MB Embarcadero
LevelDB Android / iOS Key-value pairs / NoSQL db No No No No New BSD Unofficial client that is very badly rated No Portable lightweight key-value store, NoSQL, no index support; benchmarks from 2011 have been removed unfortunately < 1 MB LevelDB
Team
LiteDB Android / iOS (with Xamarin only) NoSQL document store, fully wirtten in .Net No No No Salted AES MIT license No No A .Net embedded NoSQL database < 1 MB LiteDB team
Mongo Realm / Realm DB (acquired by Mongo in 2019) Android / iOS Object Database Yes (Mongo Atlas), tied to using Mongo DB No No Yes Mongo Realm is Apache 2.0, Mongo DB is SSPL, Mongo Atlas (?) Officially released a Flutter binding in spring 2023 (See Flutter databases) No Embedded object database 5 MB+ MongoDB Inc.
ObjectBox Android / iOS / Linux / Windows / any POSIX Object-oriented NoSQL edge database for high-performance on edge devices in Mobile and IoT Yes WIP Yes transport encryption; additional encryption upon request Apache 2.0 and Proprietary Yes Yes, vector support already available, more AI support coming High-performance NoSQL Edge Database with out-of-the-box Data Sync for Mobile and IoT; fully ACID compliant; benchmarks available. < 1 MB ObjectBox
Oracle Database Lite Android / iOS Relational Yes Yes No 128-bit AES Standard encrytion Proprietary No No Portable with P2P and central sync support as well as support for sync with SQLite < 1 MB Oracle Corporation
redis DB No K/V in-memory store, typically used as cache No No No TLS/SSL-based encryption can be enabled for data in motion. Three clause BSD license, RSAL and Proprietary Unofficial redis Dart client available Yes High-performance in-memory Key Value store with optional durability An empty instance uses ~ 3MB of memory redislabs (the original author of redis left in 2020)
SQL Anywhere Android / iOS Relational Yes, tied to using other SAP tech though (we believe) No No AES-FIPS cipher encryption for full database or selected tables Proprietary No No Embedded / portable database with central snyc support with a stationary database, pricing now available here   SAP (originally Sybase)
SQLite embedded on iOS and Android Relational No No No No, Use SQLCipher to encrypt SQLite Public domain Flutter plugins (ORMs) for SQLite, but nothing from Hwaci No, but various unofficial extensions are available C programming library; probably still 90% market share in the small devices space (personal assumption) < 1 MB Hwaci
UnQLite Android / iOS Key-value pairs / JSON store / NoSQL db No No No 128-bit or 256-bit AES standard encryption 2-Clause BSD not yet; might be coming though; there was a 0.0.1 released some time ago No Portable lightweight embedded db; self-contained C library without dependency. ~ 1.5 MB Symisc systems

What about NoSQL on Mobile?

NoSQL is a rather large bracket for database approaches that use a data structure that is non-relational. Indeed, NoSQL databases include key-value stores, document databases, wide-column stores, object databases, and graph databases. Generally, NoSQL is associated with scalability and performance. Although in some cases the speed of a NoSQL approach may come with less emphasis on reliable data storage (see ACID). 

The general traits of NoSQL approaches that make it worthy for evaluation for mobile:

Object-oriented code in iOS and Android Apps
Developers implement apps in object-oriented languages, meaning an app works with objects. But a relational database works with columns and rows and does not allow storing objects directly. Consequently, objects need to be serialized or reassembled in possibly inefficient ways when stored or retrieved. For any database operation this takes time and imposes a natural speed limitation. The right NoSQL approach, e.g. an object database/store, may solve it without complex mappings.

1. Object-oriented code in iOS and Android Apps

Developers implement apps in object-oriented languages, meaning an app works with objects. But a relational database works with columns and rows and does not allow storing objects directly. Consequently, objects need to be serialized or reassembled in possibly inefficient ways when stored or retrieved. For any database operation this takes time and imposes a natural speed limitation. The right NoSQL approach, e.g. an object database/store, may solve it without complex mappings.

2. Dynamic requirements of Mobile Apps

After the release of a mobile app, there is often an ongoing live operation process to continually adapt and enhance the app (bug fixes, new features, changes due to changes in the software or legal environment).  Implementing changes in a mobile app with a relational client database requires changes to the database schema, which results in additional work. NoSQL databases usually operate without a schema (usually with some enforcing data validation rules). Adding new fields as needed and storing dissimilar data together as necessary means minimal implementing effort for the database. However, again it all depends on the specific database implementation and use case.

3. Growing need for handling lots of structured and unstructured data on Mobile

There seems to be the need for handling more and more data (roughly speaking, the amount of data is doubling every 24 months) generally and on mobile. Obviously, on mobile the storage space is still a major concern, which usually omits simply storing every possible data point for potential use.

However, other criteria like size, battery-friendliness or security may be more important factors for choosing a mobile database. All in all, we hope, we provide a good general overview of the general status of mobile databases.

Spread the love
Posted in News and tagged , , , .