Introduction - If you have any usage issues, please Google them yourself
try {
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance()
} catch (InstantiationException e) {
// TODO Auto-generated catch block
e.printStackTrace()
} catch (IllegalAccessException e) {
// TODO Auto-generated catch block
e.printStackTrace()
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
System.out.println("Driver not found")
}