tree to markdown command

This commit is contained in:
2024-04-06 01:04:43 +02:00
parent 38bcdd15cc
commit f666ac3dc9
2 changed files with 33 additions and 1 deletions

21
data/sqlite.md Normal file
View File

@@ -0,0 +1,21 @@
---
title: "sqlite"
tags: [ "Documentation", "data" ]
---
Work with a database:
```bash
sqlite3 "$FILE".sqlite3
```
Compress the database:
```sqlite
pragma vacuum;
```
Optimize the database:
```sqlite
pragma optimize;
```