java - How can I use the MS JDBC driver with MS SQL Server 2008 Express? - Stack Overflow
Download the latest JDBC Driver (i.e. sqljdbc4.0) from Microsoft's web site Write the program as follows: import java.sql.*; class testmssql { public static void main(String args[]) throws Exception { Class.forName("com.microsoft.sqlserver.jdbc ...
stackoverflow.com |