limbo/bindings/java
2025-01-29 11:56:49 +09:00
..
gradle/wrapper Add support Java bindings 2025-01-05 10:28:05 +02:00
rs_src Merge 'bindings/java: Implement close() for LimboStatement and LimboResultSet ' from Kim Seon Woo 2025-01-28 14:18:01 +02:00
src Add test to verify behavior on null columns 2025-01-29 11:56:49 +09:00
.gitignore Add support Java bindings 2025-01-05 10:28:05 +02:00
build.gradle.kts Add spotless support for bindings/java formatting 2025-01-25 15:25:13 +09:00
Cargo.toml Add connect function for creating connections from limbo db 2025-01-18 09:09:36 +09:00
gradlew Add support Java bindings 2025-01-05 10:28:05 +02:00
gradlew.bat Add support Java bindings 2025-01-05 10:28:05 +02:00
Makefile Add lint commands in Makefile 2025-01-26 20:04:30 +09:00
README.md Add README.md for bindings/java 2025-01-28 10:48:44 +09:00
settings.gradle.kts Add support Java bindings 2025-01-05 10:28:05 +02:00

Limbo JDBC Driver

The Limbo JDBC driver is a library for accessing and creating Limbo database files using Java.

Project Status

The project is actively developed. Feel free to open issues and contribute.

To view related works, visit this issue.

Development

How to Run Tests

To run tests, use the following command:

$ make test

Code Formatting

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 

Concepts

Note that this project is actively developed, so the concepts might change in the future.

  • LimboDB represents a Limbo database.
  • LimboConnection represents a connection to LimboDB. Multiple LimboConnections can be created on the same LimboDB.
  • LimboStatement represents a Limbo database statement. Multiple LimboStatements can be created on the same LimboConnection.
  • LimboResultSet represents the result of LimboStatement execution. It is one-to-one mapped to LimboStatement.