JSTL has sql.
http://jakarta.apache.org/taglibs/doc/standard-doc/standard/index.html

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

<sql:query var="smartUsers">
        SELECT NAME< IQ FROM USERS WHERE IQ> 220
</sql:query>
<table>
<c:foreach item=${smartUsers.rows}" var="row">
<tr>
        <td><c:out value="${row.NAME}"/></td>
        <td><C:out value="${row.IQ}"/></td>
</tr>
</c:forEach>
</table>

[EMAIL PROTECTED] covers taglibs.


At 09:26 PM 12/19/2002 -0800, you wrote:
>Hi,
>
>I apologize for the slightly off-topic post, but is there a tag library available out 
>there for pagination of records fetched from the database?
>
>I did google, but didn't find any.
>
>thanks,
>manav.


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to