mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-24 19:44:21 +01: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.
LimboDBrepresents a Limbo database.LimboConnectionrepresents a connection toLimboDB. MultipleLimboConnectionscan be created on the sameLimboDB.LimboStatementrepresents a Limbo database statement. MultipleLimboStatementscan be created on the sameLimboConnection.LimboResultSetrepresents the result ofLimboStatementexecution. It is one-to-one mapped toLimboStatement.