Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/goto-bus-stop/sqlite-jsonb
https://github.com/goto-bus-stop/sqlite-jsonb
Last synced: 1 day ago
JSON representation
- Host: GitHub
- URL: https://github.com/goto-bus-stop/sqlite-jsonb
- Owner: goto-bus-stop
- License: apache-2.0
- Created: 2024-01-19T12:18:22.000Z (10 months ago)
- Default Branch: default
- Last Pushed: 2024-11-11T10:16:34.000Z (3 days ago)
- Last Synced: 2024-11-11T11:25:55.870Z (3 days ago)
- Language: Rust
- Size: 17.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
Awesome Lists containing this project
README
# sqlite-jsonb
Rust implementation of the internal SQLite JSONB format.
The JSONB format is stable, but you should normally not use it. SQLite provides a `json()` function that converts JSONB to JSON text
and you can then parse that text in your application. There are some cases where using JSONB may be justified:
- You are writing an extension for SQLite with a function that operates on JSON--for the best UX you should handle both JSON text and JSONB.
- You have a specific performance problem with reading JSON from your SQLite database where the columns contain JSONB.## License
ⓒ Renée Kooi · Dual-licensed under [Apache-2.0](./LICENSE-APACHE) or [MIT](./LICENSE-MIT) at your option.