The Limbo JDBC driver is a library for accessing and creating Limbo database files using Java.
The project is actively developed. Feel free to open issues and contribute.
To view related works, visit this issue.
To run tests, use the following command:
$ make test
To unify Java's formatting style, we use Spotless. To apply the formatting style, run:
$ make lint_apply
To apply the formatting style for Rust, run the following command:
$ cargo fmt
Note that this project is actively developed, so the concepts might change in the future.
LimboDB
represents a Limbo database.LimboConnection
represents a connection toLimboDB
. MultipleLimboConnections
can be created on the sameLimboDB
.LimboStatement
represents a Limbo database statement. MultipleLimboStatements
can be created on the sameLimboConnection
.LimboResultSet
represents the result ofLimboStatement
execution. It is one-to-one mapped toLimboStatement
.