https://github.com/kneth/cratejdbctestbed
A simple Java application to experiment with CrateDB and JDBC
https://github.com/kneth/cratejdbctestbed
Last synced: 2 months ago
JSON representation
A simple Java application to experiment with CrateDB and JDBC
- Host: GitHub
- URL: https://github.com/kneth/cratejdbctestbed
- Owner: kneth
- License: apache-2.0
- Created: 2024-11-22T10:06:57.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-11-22T10:13:35.000Z (over 1 year ago)
- Last Synced: 2025-06-05T05:18:20.470Z (about 1 year ago)
- Language: Java
- Size: 48.8 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Crate JDBC Testbed
A simple Java application to experiment with CrateDB and JDBC.
In `app/build.gradle` you can change the JDBC driver to use.
To run the application, you need to start CrateDB:
```shell
docker run --publish=4200:4200 --publish=5432:5432 --env CRATE_HEAP_SIZE=1g --pull=always crate
```
and `./gradlew run` will run the application.