TinyBase logoTinyBase

getDb

The getDb method returns a reference to the database instance the Store is being persisted to.

getDb(): SQLiteDatabase
returnsSQLiteDatabase

A reference to the database instance.

Example

This example creates a Persister object against a newly-created Store and then gets the database instance back out again.

const db = SQLite.openDatabaseSync('my.db');
const store = createStore().setTables({pets: {fido: {species: 'dog'}}});
const persister = createExpoSqliteNextPersister(store, db, 'my_tinybase');

console.log(persister.getDb() == db);
// -> true

persister.destroy();

Since

v4.5.0