public static Connection getConnection() throws Exception {
String driver = “com.mysql.jdbc.Driver”;
String url = “jdbc:mysql://localhost/ev?”;
String username = “root”;
String password = “0532″;
Class.forName(driver); // load Oracle driver
return DriverManager.getConnection(url, username, password);
}
Archive by Author
Mysql Connection
by admin on 28. Mar, 2010 in JSP Basics

Recent Comments