View Single Post
Old 10-06-2005, 12:33   #2
Matrixbob
Senior Member
 
L'Avatar di Matrixbob
 
Iscritto dal: Jul 2001
Messaggi: 9947
Questo è il "file.jsp":
Codice HTML:
<html>

<head><title>JDBC with JSTL</title></head>

<body>

<%@ taglib uri="http://java.sun.com/jstl/sql" prefix="sql" %>
<%@ taglib uri="http://java.sun.com/jstl/core" prefix="c" %>

<sql:setDataSource driver="org.gjt.mm.mysql.Driver" url="jdbc:mysql://localhost/queryjdbc?user=root&password=MIAPWD" var="conn1" />

<sql:query var="persone" dataSource="${conn1}">select * from persona order by cf /sql:query>

<table border=1 align="center">

<thead><th>Codice Fiscale </th><th>Nome </th><th>Cognome </th></thead>

<tbody>
<c:forEach var="row" items="${persone.rows}">

<tr>
    <td> <c:out value="${row.cf}"/> </td>
    <td> <c:out value="${row.name}"/> </td>
    <td> <c:out value="${row.cognome}"/> </td>
</tr>

</c:forEach>
</tbody>

</table>

</body>

</html>
__________________
Aiuta la ricerca col tuo PC: >>Calcolo distribuito BOINC.Italy: unisciti anche tu<<
Più largo è il sorriso, più affilato è il coltello.

Ultima modifica di Matrixbob : 21-06-2005 alle 18:37.
Matrixbob è offline   Rispondi citando il messaggio o parte di esso