0% found this document useful (0 votes)
54 views1 page

Java SQL

The document describes a problem connecting to a Microsoft SQL Server database from a Java application. The application is getting an error that says "No suitable driver found" when trying to connect. The code provided is attempting to connect using the Microsoft SQL Server JDBC driver but is failing to load the driver class.

Uploaded by

Shreyash Wakhare
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
0% found this document useful (0 votes)
54 views1 page

Java SQL

The document describes a problem connecting to a Microsoft SQL Server database from a Java application. The application is getting an error that says "No suitable driver found" when trying to connect. The code provided is attempting to connect using the Microsoft SQL Server JDBC driver but is failing to load the driver class.

Uploaded by

Shreyash Wakhare
Copyright
© Attribution Non-Commercial (BY-NC)
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1/ 1

Zone:

Java Programming Language


Tags:

java, connect, sql, driver, server


I am beginner and I would like to create a connection to ms sql server and I have an Error Message: java.sql.SQLException: No suitable driver found for jdbc:microsoft:sqlserver://192.168.1.251:1433/adsEngine

1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39:

Here is my code: import java.sql.Connection; import java.sql.DriverManager; public class DBMS { public DBMS(){ } public static String strErrorDtls = ""; /** Get database connection */ public Connection getConnection() { Connection conn = null; try { String driver = "com.microsoft.sqlserver.jdbc.SQLServerDriver"; String uri = "jdbc:microsoft:sqlserver://192.168.1.251:1433/adsEngine"; Class.forName(driver); conn = DriverManager.getConnection(uri, "", ""); System.out.println("connection is up"); } catch (Exception ex) { ex.printStackTrace(); strErrorDtls += ex.getMessage() + " "; } return conn; } public static void main(String args[]){ DBMS dbms = new DBMS(); dbms.getConnection(); } }

You might also like