Skip to content

Latest commit

 

History

History
51 lines (40 loc) · 2.58 KB

sql-database-develop-java-simple.md

File metadata and controls

51 lines (40 loc) · 2.58 KB
title description services documentationcenter author manager editor ms.assetid ms.service ms.custom ms.workload ms.tgt_pltfrm ms.devlang ms.topic ms.date ms.author
Connect to SQL Database by using Java with JDBC on Windows | Microsoft Docs
Presents a Java code sample you can use to connect to Azure SQL Database. The sample uses JDBC, and it runs on a Windows client computer.
sql-database
LuisBosquez
jhubbard
genemi
08fc49b1-cd48-4dcc-a293-ff22a4d2d62c
sql-database
development
drivers
na
java
article
02/03/2017
lbosq

Connect to SQL Database by using Java with JDBC on Windows

[!INCLUDE sql-database-develop-includes-selector-language-platform-depth]

This topic presents a Java code sample that you can use to connect to Azure SQL Database. The Java sample relies on the Java Development Kit (JDK) version 1.8. The sample connects to an Azure SQL Database by using the JDBC driver.

Step 1: Configure Development Environment

Configure development environment for Java development

Step 2: Create a SQL database

See the getting started page to learn how to create a database.

Step 3: Get Connection String

[!INCLUDE sql-database-include-connection-string-jdbc-20-portalshots]

Note

If you are using the JTDS JDBC driver, then you will need to add "ssl=require" to the URL of the connection string and you need to set the following option for the JVM "-Djsse.enableCBCProtection=false". This JVM option disables a fix for a security vulnerability, so make sure you understand what risk is involved before setting this option.

Step 4: Run sample code

Next steps

Additional resources