Java SQL
Java SQL
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(); } }