This commit is contained in:
Joel Wetzell
2026-05-17 21:12:04 -05:00
parent 69bc31d3f1
commit 8e6cd58006
82 changed files with 642 additions and 450 deletions
+7 -4
View File
@@ -1,21 +1,24 @@
---
title: SQLite
sidebar:
order: 1
order: 1
---
The `db.sqlite` module can open/create SQLite databases
The `db.sqlite` module can open/create SQLite databases
- **type**: `db.sqlite`
- **params**:
- **dsn**: the data source name, this can be a file path or the special `:memory:` name for an in-memory DB
- **dsn**: the data source name, this can be a file path or the special `:memory:` name for an in-memory DB
## Cap
### Example snippet
Opens an in-memory SQLite database
```yaml
- id: db
type: db.sqlite
params:
dsn: ":memory:"
```
```