Skip to main content

Databases

Description β€” Working With Couchbase Lite Databases With Dart
Related Content β€” Blobs | Documents | Indexing

Database Concepts​

Databases created on Couchbase Lite can share the same hierarchical structure as Capella databases. This makes it easier to sync data between mobile applications and applications built using Capella.

Although the terminology is different, the structure can be mapped to relational database terms:

Table 1. Relational Database β†’ Couchbase
Relational databaseCouchbase
DatabaseDatabase
SchemaScope
TableCollection

This structure gives you plenty of choices when it comes to partitioning your data. The most basic structure is to use the single default scope with a single default collection; or you could opt for a structure that allow you to split your collections into logical scopes.

Storing local configuration

You may not need to sync all the data related for a particular application. You can set up a scope that syncs data, and a second scope that doesn't.

One reason for doing this is to store local configuration data (such as the preferred screen orientation or keyboard layout). Since this information only relates to a particular device, there is no need to sync it:

DataΒ ScopeDescription
localContains information pertaining to the device.
syncingContains information pertaining to the user, which can be synced back to the cloud for use on the web or another device.

Create or Open Database​

You can create a new database and-or open an existing database, using the Database class. The database class provides both synchronous and asynchronous methods for opening and closing databases (see explanation for Synchronous and Asynchronous APIs). Just pass in a database name and optionally a DatabaseConfiguration - see Example 1.

Things to watch for include:

  • If the named database does not exist in the specified, or default, location then a new one is created.

  • The database is created in a default location unless you specify a directory for it β€” see: DatabaseConfiguration.directory.

    tip

    Best Practice is to always specify the path to the database explicitly.

    See Supported Platforms for the default location for each platform.

Example 1. Opening a Database
final database = await Database.openAsync('my-database');

Close Database​

You are advised to incorporate the closing of all open databases into your application workflow.

Closing a database is simple, just use Database.close. See Example 2. This also closes active replications, listeners, and-or live queries connected to the database.

note

Closing a database soon after starting a replication involving it can cause an exception as the asynchronous replicator start may not yet be connected.

Example 2. Closing a Database
await database.close();

Database Full Sync​

Database Full Sync prevents the loss of transactional data due to an unexpected system crash or loss of power. This feature is not enabled by default and must be manually set in your database configuration using DatabaseConfiguration.fullSync.

caution

Database Full Sync is a safe method to prevent data loss but will incur a significant degradation of performance.

Example 3. Enable Database Full Sync
final config = DatabaseConfiguration(fullSync: true);
final database = await Database.openAsync('my-database', config);
note

Once a database is created, its configuration is immutable β€” modifying the DatabaseConfiguration afterwards has no effect on the existing instance.

Database Encryption​

Important

This feature is an Enterprise Edition feature.

Couchbase Lite includes the ability to encrypt Couchbase Lite databases. This allows mobile applications to secure data at rest, when it is being stored on the device. The algorithm used to encrypt the database is 256-bit AES.

Enabling​

To enable encryption, use DatabaseConfiguration.encryptionKey to set the encryption key of your choice. Provide this encryption key every time the database is opened - see Example 4.

Example 4. Opening an Encrypted Database
final key = await EncryptionKey.passwordAsync('secret password');
final config = DatabaseConfiguration(encryptionKey: key);
final database = await Database.openAsync('my-database', config);

Persisting​

Couchbase Lite does not persist the key. It is the application's responsibility to manage the key and store it in a platform specific secure store such as Apple's Keychain or Android's Keystore.

Opening​

An encrypted database can only be opened with the same language SDK that was used to encrypt it in the first place. So a database encrypted using the Dart SDK, and then exported, is readable only by the Dart or C SDK.

Changing​

To change an existing encryption key, open the database using its existing encryption-key and use Database.changeEncryptionKey to set the required new encryption-key value.

Removing​

To remove encryption, open the database using its existing encryption-key and use Database.changeEncryptionKey with a null value as the encryption key.

Database Maintenance​

From time to time it may be necessary to perform certain maintenance activities on your database, for example to compact the database file, removing unused documents and blobs no longer referenced by any documents.

Couchbase Lite's API provides the Database.performMaintenance method. The available maintenance operations, including compact are as shown in the enum MaintenanceType to accomplish this.

This is a resource intensive operation and is not performed automatically. It should be run on-demand using the API. If in doubt, consult Couchbase support.

Command Line Tool​

cblite is a command-line tool for inspecting and querying Couchbase Lite databases.

You can download and build it from the couchbaselabs GitHub repository. Note that the cblite tool is not supported by the Couchbase Support Policy.

Couchbase Lite for VSCode​

Couchbase Lite for VSCode is a Visual Studio Code extension that provides a user interface for inspecting and querying Couchbase Lite databases. You can find more information about this extension from it's GitHub repository.

Troubleshooting​

You should use console logs as your first source of diagnostic information. If the information in the default logging level is insufficient you can focus it on database errors and generate more verbose messages (see LogLevel) β€” see: Example 5.

Example 5. Increase level of Database Log Messages
Database.log.console.level = LogLevel.verbose;