A graphical browser for Bolt databases using GoVCL.
https://code.ivysaur.me/yvbolt
assets | ||
doc | ||
.gitignore | ||
badger.go | ||
bolt.go | ||
format.go | ||
go.mod | ||
go.sum | ||
images.go | ||
LICENSE | ||
loadedDatabase.go | ||
main.go | ||
README.md | ||
sqlite_cgo.go | ||
sqlite_nocgo.go | ||
sqlite.go | ||
TODO |
yvbolt
A graphical browser for multiple databases using GoVCL.
This is an experimental application and you should generally prefer to use qbolt.
Features
- Native desktop application, running on Linux, Windows, and macOS
- Supported databases:
- Bolt
- Full compatibility via the upstream etcd-io/bbolt library
- Browse database content
- Recursive bucket support
- Safe handling for non-UTF8 key and data fields
- SQLite
- Browse table content
- Bolt
License
The code in this project is licensed under the ISC license (see LICENSE
file for details).
This project redistributes images from the famfamfam/silk icon set under the CC-BY 2.5 license.
Usage
CGO_ENABLED=1 go build
- Download liblcl for your platform, or compile it yourself (tested with v2.2.3)
- Place the liblcl library file in the same directory as
yvbolt
- Run
yvbolt
and use the main menu to open a database
Changelog
2024-06-08 v0.2.0
- Add SQLite support (now requires CGo)
- Add images for menu and navigation items
2024-06-03 v0.1.0
- Initial public release