<%
String host="localhost";
String database="nombrebasededatos";
try {
try{
Class.forName ( "com.mysql.jdbc.Driver" );
String url = "jdbc:mysql://" + host + "/" + database;
Connection con =(Connection) DriverManager.getConnection(url, "root", "";
Statement s = (Statement)con.createStatement();
}catch(Exception e){
out.println(e);
}
} finally {
out.close();
}
%>