Connect Java Application To MS SQL Server In Eclipse



In this video we will learn how to connect java application to SQL server database in eclipse using JDBC Driver .

Download LINKS

JDBC DRiver
https://www.microsoft.com/en-pk/download/details.aspx?id=11774
TCP view
https://technet.microsoft.com/en-us/sysinternals/tcpview.aspx

JDBC url Format
jdbcurl = “jdbc:sqlserver://” + Server + “:” + port + “;user=” + user
+ “;password=” + password + “;databasename=” + database + “”;

Comments are closed.