Download MSSql JDBC Driver

What are JDBC Drivers?

JDBC drivers are Java library files with the extension '.jar', used by Java applications to connect to the database. Usually they are provided by the same company which developed the database software.

What is the JDBC URL?

The JDBC Driver requires the JDBC URL to know where the database is located ( on which machine and port), the database name or other settings. All this are passed as a string, specific for each database and driver.

Download the MSSql JDBC Driver

DbSchema can connect to Azure Cloud database ! Just connect using host 'servername.database.windows.net', port 1433 and configured user and password.

We support all versions of SqlServer including SqlServer 2014, under the name 'SqlServer'. For SqlServer 2000-2005 we have created a different entry in DbSchema because of compatibility problems with the versions after.

  • Required File(s): sqlserver.jar
  • Java Driver Class: com.microsoft.jdbc.sqlserver.SQLServerDriver
  • JDBC URL: jdbc:sqlserver://HOST:PORT;databaseName=DB
  • Website: Microsoft

jTDS JDBC Driver

Download the jtds-nn-dist.zip file, unzip it and then load the jtds.jar file
  • Required File(s): jtds-1.2.2.jar
  • Java Driver Class: net.sourceforge.jtds.jdbc.Driver
  • JDBC URL: jdbc:jtds:sqlserver://HOST[:PORT][/DB];user=USER;password=PASSWORD[;instance=PARAM] or jdbc:jtds:sqlserver://HOST[:PORT][/DB];domain=PARAM;integratedSecurity=true
  • Website: jTDS web site
Watch a You Tube video How to configure SqlServer 2008 for jdbc connections.

Download MsSql JDBC Driver

The driver files are compressed in a zip file.

for any issues with the driver, you can write to us.

How to enable TCP/IP Connection and Set The Port

SqlServer TCP/IP connections are not enabled by default. You won't be able to connect to the database unless you enable them.

In the SQLServer Configuration Manager go to Protocols and enable TCP/IP
TCP/IP
Click on the protocols for SqlExpress, right-click on the TCP/IP and choose Properties.
Go to the IP Addresses tab, scroll to the bottom and you'll find the option IP All enter the desired port by default it should be 1433.
TCP/IP 2

Enable Database Authentication (Mixed Mode)

By default only the Windows Authentication is enabled. This will allow login on the database only using the COMPUTER_DOMAIN/WINDOWS_USER and not using the 'sa' user. Read the chapter about how to install SqlServer for details.

To be able to connect to the database using the 'sa' user or other database user, the mixed authentication mode should be enabled.

Take this steps to enable mixed mode authentication:

First, login to your server. Click on Start > Programs > Microsoft SQL Server Select "SQL Server Management Studio Express" / "SQL Server Management Studio", depending on your version of SQL Server.

Right click the server name and select "Properties". Click "Security".
SQL Server 3

A dialog will open. Under "Server authentication" select "SQL Server and Windows Authentication Mode".

Right click the server name and select "Restart". Wait a few moments for the service to restart before proceeding.
SQL Server 4
To review the current configured authentication method, from the previous dialog 'Server Properties' choose the 'View Connection Properties' in the bottom. In the Properties Dialog the configured authentication will show up.
SQL Server 5

Debug Connectivity Issues

  1. Check Network:
    Make sure the Network is workable and stable when you connect to SQL Server on a remote machine. You can test the Network connection using the PING grogram: ping <Server Name>
  2. Enable remote connections for SQL Server:
    a) In SQL Server Configuration Manager, expand SQL Server Network Configuration, and then click Protocols for .
    b) In the details pane, right-click one of the available protocols, and then click Properties.
    c) To enable the TCP/IP protocol (or named pipes) for remote connections, set the Enabled box to Yes.
  3. Enable the SQL Server Browser service:
    If you connect to a named instance, make sure the SQL Server Browser service by using SQL Server Configuration Manager is enable or specify the TCP port when connecting to it.
  4. Create an exception for SQL Server in Windows Firewall:
    If firewall is enabled on the server, you need to put TCP port number of the instance, such as 1433 for the default instance. Then add UDP 1434 for SQL Server Browser Service.
For TCP / IP connectivity problem troubleshooting process as below, please follow the steps.
  1. Check the server name you used.
    For a named instance, you need to type computer name\instance name. For a default server, you only need to type computer name. For server Configuration, please use netstat command. Run “netstat -an”command in DOS windows. The "netstat-an" command output in the removal of the part of the SQL Server port number as following: Active Connections Proto Local Address Foreign Address State TCP 0.0.0.0:1433 0.0.0.0:0 LISTENING TCP 169.254.173.244:1433 169.254.173.244:3952 ESTABLISHED
  2. Client TCP/IP configuration
    In most cases you do not need to configure the client, because the TCP / IP protocol is enabled by default. You can use the Client Network Utility (or SQL Server Configuration Manger) to configure TCP / IP protocol. Run cliconfg.exe or from Start -> Programs -> Microsoft SQL Server -> Client Network Utility can be transferred out
  3. Verify that SQL Server is actually listening for TCP / IP protocol
    In order to verify that SQL Server does monitor the TCP / IP protocol, but also need to see the SQL Server errorlog file. If you find that SQL Server does not listen for TCP / IP protocol, use the server-side network configuration tool (run svrnetcn.exe ) to confirm whether the configured SQL Server monitor TCP / IP protocol.
  4. Check the network connectivity.
    To ensure that only the server can ping the IP address of SQL Server, SQL Server can ping the server name. If you ping the server name in question, indicating the DNS or WINS server configuration problem, you can in your HOSTS file (HOSTS file in the system32 \ drivers \ etc directory) and manually add server IP address as follows: 169.254.173.244 MySQLserver If you have a problem with ping IP address, then check the configuration of the network including hardware connections. On the server and client are using "ipconfig / all" command to check the server and client are on the same network.
  5. Use the TELNET command to check the SQL listening port.
    To verify that SQL Server listening port, you can use the TELNET command. Assume that SQL Server's IP address is 192.168.1.1, port 1234, you can run the following command: TELNET 192.168.1.1 1234 If the TELNET successful, then the result will be a only a black screen with cursor in flash. If unsuccessful, then you will get an error message. These error messages need to continue troubleshooting the issue. From the remote machine can you telnet to SQL server on the port SQL server is running. On remote machine, open command prompt and type: telnet SQLServerHostName is either IP address or hostname of the remote computer where SQL serve is running PortNumber is port number SQL server is listening for default instance it is 1433 but check SQL server configuration manager to make sure.
  6. Check the SQL Server login user access.
  7. You can try to specify protocol and port to connect SQL Server in the Query Analyzer as below:
    TCP:MySQLServer,1433 Through this method can force the specified query analyzer using the TCP / IP connection to the server specified port.
  8. If it does not work for you, please try to use Network Monitor to capture trace to analysis.
    For more information about Network Monitor, please refer to this article
Additional, please refer the articles as below:
  1. TCP/IP port numbers required to communicate to SQL over a firewall: http://support.microsoft.com/?id=287932
  2. How to Troubleshoot Basic TCP/IP Problems: http://support.microsoft.com/kb/169790

Try the MSSql JDBC Driver using DbSchema

DbSchema is a desktop application which can connect to MSSql using JDBC drivers.
  1. 1 Download DbSchema. DbSchema has a Free Community Edition and a PRO Edition No email or registration is required.
  2. 2 Choose to connect to the database, and choose MSSql. Connect to database
  3. 3 Connection-dialog

    At this point, DbSchema already downloads the JDBC driver into this folders:

    • C:\Users\YourUser\.DbSchema\drivers\MSSql (Windows) or
    • /Users/YourUser/.DbSchema/drivers/MSSql (Linux and MacOS).

    In the Connection Dialog, choose the driver and a JDBC URL template. Some databases have multiple connection options, so you might see several templates. Select whether the database is on your computer or a different one. If it’s on another machine, find the host name. Read our documentation to find the Host Name.

  4. 4 Press the Ping button to test the connectivity.
  5. 5 Edit JDBC URL In the URL dropdown, there is an option to 'Manually Edit the URL', which allows customization and cloud connections. Select this option to view and modify the generated JDBC URL.
  6. 6 DbSchema Diagrams After connecting, DbSchema will reverse-engineer the database and create the initial diagrams. Double-click any table header or column to edit.
  7. 7 DbSchema Dark Theme DbSchema integrates multiple themes so you can personalize your interface. I will present the next features in the Dark Theme.
  8. 8 Visual Query Builder Build SQL Queries visually without having to write any line of code. Add and edit tables with a simple click.
  9. 9 Relational Data Editor The Relational Data Editor can visually explore data from multiple tables. You can cascade into further tables via foreign keys or virtual foreign keys. There is no limit to how many tables can be opened at once.
  10. 10 Schema Synchronization DbSchema model contains its own image of the schema, independent from the database. Connecting to another database won't change the model schema unless you choose to refresh it from the database.
  11. 11 Automation Scripts DbSchema can execute Groovy or Java Scripts with direct access to the DbSchema API. This will help to solve different tasks without visual interaction.
  12. 12 SQL Editor Discover the SQL Editor from the menu to edit and execute queries. For a detailed list of features, please read this Documentation