superapp
BackendDatabases

Expo SQLite

Connect from React Native using Expo SQLite.

Chat in Claude

Use SQLite in React Native apps with Expo SQLite.

import { createEngine } from '@superapp/backend'
import { expoSqliteProvider } from '@superapp/backend/databases/expo-sqlite'

const engine = createEngine({
  providers: [expoSqliteProvider],
  connections: {
    main: { type: 'expo-sqlite', databaseName: 'app.db' },
  },
})

Install

npx expo install expo-sqlite

Connection Options

OptionTypeDescription
databaseNamestringName of the SQLite database file

On this page