Build and install the Java SDK for LibSQL:
git clone https://github.com/libsql/libsql-client-java.git
cd libsql-client-java
mvn installPlease note that this step will be eliminated after we publish to Maven Central.
Create a database:
turso db create java-exampleand add some tests data:
turso db shell java-example "CREATE TABLE users (email TEXT)"
turso db shell java-example "INSERT INTO users (email) VALUES ('alice@example.org')"Configure URL and access token in environment variables:
export DATABASE_URL=$(turso db show --url java-example)
export DATABASE_TOKEN=$(turso db tokens create java-example)Build the example application:
mvn packageand run it:
java -jar turso-example.jarThis project is licensed under the MIT license.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this project by you, shall be licensed as MIT, without any additional terms or conditions.