mirror of
https://github.com/jwetzell/showbridge-docs.git
synced 2026-09-01 02:09:02 +00:00
25 lines
405 B
Plaintext
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:"
|
|
```
|