https://github.com/cleve/lmdb-viewer
GUI to navigate over LMDB data
https://github.com/cleve/lmdb-viewer
database gui java java-11 javafx javafx-desktop-apps lmdb
Last synced: 6 months ago
JSON representation
GUI to navigate over LMDB data
- Host: GitHub
- URL: https://github.com/cleve/lmdb-viewer
- Owner: cleve
- License: apache-2.0
- Created: 2020-05-22T14:16:25.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-21T21:50:56.000Z (about 5 years ago)
- Last Synced: 2025-04-10T03:54:43.866Z (6 months ago)
- Topics: database, gui, java, java-11, javafx, javafx-desktop-apps, lmdb
- Language: Java
- Size: 16 MB
- Stars: 13
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# lmdb-viewer
GUI to navigate over LMDB data
## Limitations
* Only single database files can be opened.
* Tested on Ubuntu 20.04## Executing the App
### Linux
Get the file from: https://github.com/cleve/lmdb-viewer/releases
Extract and execute the app under the *bin* directory.
```sh
./lmdb-viewer
```### All platform
Requirements:
+ Java 11+ (Javafx does not work with java < 11)
+ You will need to get javafx library (LTS) for your platform:https://gluonhq.com/products/javafx/
Execute the Jar including the libraries for your platform
Shell example:
```sh
#! /usr/bin/sh
java --module-path /path/javafx-sdk-11.0.2/lib --add-modules=javafx.controls,javafx.fxml -jar lmdb-viewer.jar
```### Requirements for dev
+ Java 11+ (Javafx does not work with java < 11)
+ You will need to get javafx library:https://gluonhq.com/products/javafx/