A graphical browser for Bolt databases using GoVCL.
https://code.ivysaur.me/yvbolt
assets | ||
doc | ||
lexer | ||
sqliteclidriver | ||
.gitignore | ||
db_badger.go | ||
db_bolt.go | ||
db_none.go | ||
db_pebble.go | ||
db_redis.go | ||
db_sqlite_cgo.go | ||
db_sqlite_nocgo.go | ||
db_sqlite.go | ||
go.mod | ||
go.sum | ||
images.go | ||
LICENSE | ||
loadedDatabase.go | ||
main.go | ||
Makefile | ||
platform_windows.go | ||
README.md | ||
redisConnectionDialog.go | ||
TODO | ||
util_format.go | ||
util_types.go | ||
util_vcl.go | ||
versions.go |
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
- Connect to multiple databases
- Browse table/bucket content
- Use context menu to perform special table/bucket actions
- Run custom SQL queries
- Select text to run partial query
- Safe handling for non-UTF8 key and data fields
- Supported databases:
- Badger v4
- Bolt
- Recursive bucket support
- Option to open as readonly
- Pebble
- Redis
- SQLite
- Drivers: mattn (CGo), modernc.org (no cgo), experimental command-line driver
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.
This project includes trademarked logo images for each supported database type.
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-29 v0.5.0
- Pebble: Add as supported database
- Bolt: Support opening as readonly
- Bolt: Support creating new databases
- Bolt: Support adding/removing recursive child buckets
- SQLite: Support custom CLI driver that parses
/usr/bin/sqlite3 -json
output (experimental) - Redis: Improve query parser to support quoted strings
- App: Support refreshing elements in nav tree
- App: Help menu option to show driver versions
- App: Add image icons for refresh and close context menu actions
- Build: Add makefile for cross-compiling release binaries
⬇️ Download for Windows x86_64
2024-06-23 v0.4.0
- Redis: Add as supported database
- Badger: Allow creating in-memory databases
- App: Allow selecting partial query text to execute
- App: Allow closing database connections from context menu
- App: Allow scrolling large content on Properties pane
- App: Preload recursive navigation
- App: Automatically switch to selected database when new connection is created
- App: Add help website link
- App: Add database logo images
2024-06-25 v0.3.0
- Badger: Add BadgerDB v4 as supported database
- SQLite: Add support for CGo-free SQLite driver under cross-compilation
- Bolt: Update Bolt to v1.4.0-alpha.1
- App: Add support for running custom queries
- App: Add status bar showing currently selected DB
- App: Fix missing icons in nav when selecting items
- App: Fix extra quotemarks when browsing string content of database
2024-06-08 v0.2.0
- SQLite: Add SQLite support (now requires CGo)
- App: Add images for menu and navigation items
2024-06-03 v0.1.0
- Initial public release