Files
showbridge-docs/src/content/docs/modules/db/sqlite.mdx
T
2026-06-01 18:03:47 -05:00

25 lines
405 B
Plaintext

---
title: SQLite
sidebar:
order: 1
---
import SchemaInfo from '../../../../components/SchemaInfo.astro';
The `db.sqlite` module can open/create SQLite databases
<SchemaInfo type="module" id="db.sqlite"></SchemaInfo>
This module implements the `DatabaseModule` interface.
### Example
Opens an in-memory SQLite database
```yaml
- id: myDatabase
type: db.sqlite
params:
dsn: ":memory:"
```