- Notifications
You must be signed in to change notification settings - Fork4
Java Driver for CovenantSQL
License
NotificationsYou must be signed in to change notification settings
CovenantSQL/cql-java-driver
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
CovenantSQL-Java-Connector is a Type 4 Java JDBC driver forCovenantSQL database querying.
To add a dependency using Maven, use the following:
<dependency> <groupId>io.covenantsql</groupId> <artifactId>cql-java-connector</artifactId> <version>1.0.1</version> </dependency>
To add a dependency using Gradle:
repositories { maven { url'https://raw.github.com/CovenantSQL/cql-java-driver/mvn-repo' }}dependencies { compile'io.covenantsql:covenantsql-java-connector:1.0-SNAPSHOT'}
Configure the dataSource like the following example:
<dataSourcetype="POOLED"> <propertyname="driver"value="io.covenantsql.connector.CovenantDriver"/> <propertyname="url"value="jdbc:covenantsql://${host}:${port}/${database}"/> <propertyname="driver.key_path"value="${key_path}"/> <propertyname="driver.cert_path"value="${cert_path}"/> <propertyname="driver.sslmode"value="${sslmode}"/> <propertyname="driver.ssl"value="${ssl}"/></dataSource>
Explanation:
- Use
io.covenantsql.connector.CovenantDriver
as the driver class. - Replace
host
variable with the adapter host address. - Replace
port
variable with the adapter port. - Replace
database
variable with the adapter. - Replace
key_path
variable with the https certificate private key path. - Replace
cert_path
variable with the https certificate file path. - Replace
sslmode
variable to use none/strict mode for https certificate check. - Set
ssl
variable to true/false to enable/disable https adapter connection.
You can see a runnable exampleHere.
About
Java Driver for CovenantSQL
Topics
Resources
License
Uh oh!
There was an error while loading.Please reload this page.
Stars
Watchers
Forks
Releases
No releases published
Packages0
No packages published
Uh oh!
There was an error while loading.Please reload this page.