Premesso che è la prima pagina che scrivo. Non riesco a farlo funzionare. Tomcat mi dà errore. Per favore qualcuno mi dica dove sbaglio!! Questo è il codice:

codice:
<%@ page import="java.io.*,java.util.*,java.sql.*,java.sql.Date, java.text.*" %>
<%@ page session="false" %>

<html>

<head>
<title>2009 Valutazioni di Compatibilit&agrave; con il PTCP e Valutazione Ambientale</title>
<link rel="stylesheet" type="text/css" href="stile_istruttorie.css">

</head>



<body>
<h1>2009 Valutazioni di Compatibilit&agrave; con il PTCP e Valutazioni Ambientali</h1>

<table border="1" class="tit" align="center" >
                                  
 <tr     <td width="80px">Data ricevimento</td>
        </tr>
                                
                                </table>
<%
 SimpleDateFormat sdf = new SimpleDateFormat("dd/MM/yyyy");
   
      
           Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
           Connection connection=DriverManager.getConnection("jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)}; DBQ=D:/Dati_arcims/istruttorie_pgt/istruttorie.mdb");
           Statement statement = connection.createStatement();
	
		
		
		
	   String sql="SELECT * FROM Q_GDL order by Scad_parereGDL"; 
			

			ResultSet rs = statement.executeQuery(sql);
			 
                   			
                        while(rs.next()){
           
               	      Date Pervenuta_il=rs.getDate(6);
                                                               %>
  <table border="1" bordercolor="black"  align="center" >
                                  
     <tr>
      <td width="80px"><%=sdf.format(Pervenuta_il)%></td>
         
   </tr>
                                
 </table>
				
                                 <%
				
				}
        
	     connection.close();

   	 
%>

</body>
</html>