objectbox / objectbox-c

C and C++ database for objects and structs
https://objectbox.io/
Apache License 2.0
200 stars 35 forks source link

Is there any tool to investigate or browse the database created by objectbox, no matter gui or cli #34

Open lymslive opened 1 year ago

lymslive commented 1 year ago

When I develop some application with the objectbox lib, I hope to have a separate tool to verify the records (objects) saved in the database, somthing like that for SQLite, to browse and lookup what table(entities) and records existed in current database file.

I have glanced at the repos in github.com/objectbox, but not found such a tool. Compare to 'objectject-generator` as pre-build tool, such a post-browse tool is also useful.

Maybe it is possible to write one using objectbox lib, while I think it is so common requirement, I wonder is there any project already provides such tool.

greenrobot commented 1 year ago

We should be able to provide a docker image for that; would that work for you? It will provide the "Admin" web app like you can see here.

lymslive commented 1 year ago

The ObjectBox Data Browser in Admin Web App looks fine. But does that only embedded in Java app? I would like work with C/C++, and I think such data browser should be a separate development tool and independent of language.

greenrobot commented 1 year ago

It would be a Docker image, so that's completely separate from any app and language. You would run a container and give it the path to your DB.

lymslive commented 1 year ago

OK, that is fine, when and where the docker image would be available?