Getting Started
Connecting to Azure Table Storage
Establishing a Connection shows how to authenticate to Azure Table Storage and configure any necessary connection properties in a JDBC URL. You can also configure driver capabilities through the available Connection properties, from data modeling to firewall traversal. The Advanced Settings section shows how to set up more advanced configurations and troubleshoot connection errors.
Connecting to JDBC Data Sources
The CData JDBC Driver for Azure Table Storage provides full support for integration into Java applications, including Eclipse, NetBeans, IntelliJ IDEA, and many other Integrated Development Environments, as well as J2EE applications running on a Java server such as Tomcat. You can find JSP, console, and swing demos in the installation folder.
Java Version Support
To deploy the driver JAR file, you must have Java Development Kit (JDK) 1.8 or higher installed on your system.Azure Table Storage Version Support
The version support for Azure Table Storage varies based on the driver configuration.
If Backend is set to CosmosDB, the driver uses version 2019-02-02 of the Azure CosmosDB REST API.
If Backend is set to "AzureStack", "Storage", or "Emulator", then the API version used depends on the AuthScheme connection property:
- AuthScheme=AzureAD: The driver uses version 2017-11-09 of the Azure Storage REST API.
- AuthScheme=AccessKey: The driver uses version 2014-02-14 of the Azure Storage REST API.
- AuthScheme=SharedAccessSignature: The driver uses the version of the Azure Storage REST API that is specified in the "sv" parameter in the shared access key.
- For example, if your shared access key has the value "sv=2018-03-28", the version used will be 2018-03-28.
See Also
-
Create Connection Objects
See Connecting from Code to create JDBC Connection objects. -
Query Data from Code
See Executing Statements and Using Prepared Statements to execute SQL statements to Azure Table Storage tables. -
Connect from Java-Based Tools
See Using from Tools shows how to connect to Azure Table Storage and query data from several popular database tools.