https://github.com/backtrace-labs/sqlite_protobuf
An updated fork of sqlite_protobuf (https://github.com/rgov/sqlite_protobuf), a SQLite extension for extracting values from serialized Protobuf messages.
https://github.com/backtrace-labs/sqlite_protobuf
Last synced: 7 months ago
JSON representation
An updated fork of sqlite_protobuf (https://github.com/rgov/sqlite_protobuf), a SQLite extension for extracting values from serialized Protobuf messages.
- Host: GitHub
- URL: https://github.com/backtrace-labs/sqlite_protobuf
- Owner: backtrace-labs
- License: mit
- Created: 2021-12-03T00:19:29.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-05-25T14:57:44.000Z (over 2 years ago)
- Last Synced: 2025-03-29T19:51:12.351Z (10 months ago)
- Language: C
- Size: 192 KB
- Stars: 27
- Watchers: 12
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
This fork of [sqlite\_protobuf](https://github.com/rgov/sqlite_protobuf)
fixes some issues (e.g.,
[#15](https://github.com/rgov/sqlite_protobuf/issues/15)) and removes the
test suite that we do not use.
It also comes with `proto_table`, a C library to construct ergonomic
views on top of the `sqlite_protobuf` extension.
# Protobuf Extension for SQLite
This project implements a [run-time loadable extension][ext] for
[SQLite][]. It allows SQLite to perform queries that can extract field
values out of stored Protobuf messages.
[ext]: https://www.sqlite.org/loadext.html
[SQLite]: https://www.sqlite.org/
See also the [JSON1 Extension][json1], which is a similar extension
for querying JSON-encoded database content.
[json1]: https://www.sqlite.org/json1.html