<%@ page import="java.sql.*" %>
<%
String connectionURL = "jdbc:mysql://localhost:3306/comunitaria?user=root";
Connection connection = null;
Statement statement = null;
ResultSet rs = null;
String code;
%>
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head><body alink="#005FA9" link="#005FA9" vlink="#005FA9" >
<p>
<%
Class.forName("com.mysql.jdbc.Driver").newInstance();
connection = DriverManager.getConnection(connectionURL, "", "");
statement = connection.createStatement();
...
...