A graphical browser for Bolt databases using GoVCL. https://code.ivysaur.me/yvbolt
Go to file
mappu 645ab29cdd doc/README: changelog for v0.3.0 2024-06-15 13:22:02 +12:00
assets images: add more images 2024-06-15 11:42:13 +12:00
doc doc: update README, add screenshot 2024-06-03 17:00:33 +12:00
.gitignore gitignore: exclude test data folder 2024-06-15 13:17:59 +12:00
LICENSE initial commit 2024-06-03 16:49:04 +12:00
README.md doc/README: changelog for v0.3.0 2024-06-15 13:22:02 +12:00
TODO sqlite: use cgo-free driver if necessary 2024-06-15 13:16:48 +12:00
badger.go badger: initial support 2024-06-15 12:37:44 +12:00
bolt.go add new custom query feature 2024-06-15 12:15:21 +12:00
format.go gui: strip extra quote marks from string cells 2024-06-15 12:15:29 +12:00
go.mod sqlite: use cgo-free driver if necessary 2024-06-15 13:16:48 +12:00
go.sum sqlite: use cgo-free driver if necessary 2024-06-15 13:16:48 +12:00
images.go images: add more images 2024-06-15 11:42:13 +12:00
loadedDatabase.go add new custom query feature 2024-06-15 12:15:21 +12:00
main.go gui: improvements for execute toolbar 2024-06-15 12:57:35 +12:00
sqlite.go sqlite: use cgo-free driver if necessary 2024-06-15 13:16:48 +12:00
sqlite_cgo.go sqlite: use cgo-free driver if necessary 2024-06-15 13:16:48 +12:00
sqlite_nocgo.go sqlite: use cgo-free driver if necessary 2024-06-15 13:16:48 +12:00

README.md

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
  • Run custom SQL queries
  • Safe handling for non-UTF8 key and data fields
  • Supported databases:
    • Bolt
      • Full compatibility via the upstream etcd-io/bbolt library
      • Recursive bucket support
    • SQLite
      • Uses CGo if available or modernc.org if not
    • Badger v4

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

  1. CGO_ENABLED=1 go build
  2. Download liblcl for your platform, or compile it yourself (tested with v2.2.3)
  3. Place the liblcl library file in the same directory as yvbolt
  4. Run yvbolt and use the main menu to open a database

Changelog

2024-06-25 v0.3.0

  • Add support for running custom queries
  • Add BadgerDB v4 as supported database
  • Add support for CGo-free SQLite driver under cross-compilation
  • Add status bar showing currently selected DB
  • Update Bolt to v1.4.0-alpha.1
  • Fix missing icons in nav when selecting items
  • Fix extra quotemarks when browsing string content of database

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