SimplePool/simplepool/simplepool-examples/jndi/jstl.jsp
2004-03-28 00:16:24 +00:00

27 lines
596 B
Text

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
<html>
<head>
<title>SimplePool JNDI/JSTL Example</title>
</head>
<body>
<%-- Execute the query using our JNDI DataSource --%>
<sql:query var="rs" dataSource="jdbc/JNDIPoolDS">
SHOW TABLES
</sql:query>
<h3>Tables</h3>
<ul>
<%--
Loop through the result set and
display the current column value
--%>
<c:forEach var="row" items="${rs.rowsByIndex}">
<li><c:out value="${row[0]}"/></li>
</c:forEach>
<ul>
</body>
</html>