NuoDB JDBC Driver
JDBC is the Java API defining API calls to SQL compliant databases. The NuoDB driver is a JDBC type 4 driver (also known as a Direct to Database, Pure Java Driver) that converts JDBC calls directly into a vendor-specific database protocol.
This documentation is not meant to be a full Reference or Programming manual for JDBC. |
It is just meant to help you get started with JDBC and NuoDB.
The NuoDB JDBC driver has always included backwards and forwards compatibility with every version of NuoDB. For example, you can use the JDBC driver for NuoDB 1.0 with the latest version of NuoDB or you can use the current JDBC driver with NuoDB 1.0.
Requirements
Java 11 or 17. Both Oracle and OpenJDK are supported.
The JDBC driver is based on JDBC 4.0.
Dependencies
For NuoDB JDBC driver version 21.x.x and later, install the following libraries.
Library | Version | Description |
---|---|---|
slf4j-api |
1.7.6 |
This provides APIs for logging messages from Java applications. |
apache httpclient |
4.5.8 |
This is an open-source library for making HTTP requests and handling HTTP responses in Java applications. |
Installation
The JDBC jar is published via Sonatype to Maven Central so that you can declare a dependency in your Gradle, Ivy or Maven build files.
<!-- Maven POM -->
<dependency>
<groupId>com.nuodb.jdbc</groupId>
<artifactId>nuodb-jdbc</artifactId>
<version>24.1.0</version>
</dependency>
/* Gradle Build */
compile group: 'com.nuodb.jdbc', name: 'nuodb-jdbc', version: '24.1.0'
<!-- Ivy XML -->
<dependency org="com.nuodb.jdbc" name="nuodb-jdbc" rev="24.1.0"/>
The version number is subject to change.
For up-to-date details, search for nuodb-jdbc
at Sonatype: https://search.maven.org/artifact/com.nuodb.jdbc/nuodb-jdbc.
|