Initial commit for Git.

This commit is contained in:
Erik C. Thauvin 2012-05-14 13:37:38 -07:00
parent 98b1521e20
commit 9595f70fd7
27 changed files with 1790 additions and 1780 deletions

View file

@ -1,27 +1,27 @@
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
<html>
<head>
<title>SimplePool Servlet/JSTL Example</title>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<%@ taglib prefix="sql" uri="http://java.sun.com/jstl/sql" %>
<html>
<head>
<title>SimplePool Servlet/JSTL Example</title>
</head>
<body>
<%-- Execute the query using our DataSource --%>
<sql:query var="rs" dataSource="${ServletPoolDS}">
<body>
<%-- Execute the query using our DataSource --%>
<sql:query var="rs" dataSource="${ServletPoolDS}">
SHOW TABLES
</sql:query>
</sql:query>
<h3>Tables</h3>
<ul>
<%--
Loop through the result set and
display the current column value
--%>
<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>
</c:forEach>
<ul>
</body>
</html>