<%@ page import = "java.sql.*"%> Obtaining a Connection <% Connection conn=null; ResultSet result=null; Statement stmt=null; ResultSetMetaData rsmd=null; try { Class c=Class.forName("com.mysql.jdbc.Driver"); } catch(Exception e) { out.write("Error!!!!!!" + e); } try { conn=DriverManager.getConnection("jdbc:mysql://localhost:3306/db_name","db_user","db_password"); out.write("Connected!"); } catch(SQLException e) { System.out.println("Error!!!!!!" + e); } %>