Read and respond to this message at: 
https://sourceforge.net/forum/message.php?msg_id=3125836
By: hkollmann

>From the bookstore example:

<!--DOCTYPE html
        PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"-->
<%@ taglib uri="/WEB-INF/dbforms.tld" prefix="db" %>
<%@ taglib uri="/WEB-INF/sql.tld" prefix="sql" %>
<%@ taglib uri="/WEB-INF/c-el.tld" prefix="c" %>
<head>
   <dbE:base/>
</head>
<html>
   <body>
      <db:setDataSource dataSource="con" />
      <sql:query dataSource="${con}" var="qry">
         select * from BOOK
      </sql:query>
      <table border="1">
         <c:forEach var="row" items="${qry.rows}">
            <tr>
               <td>
                  <c:out value="${row.isbn}"/>
                  &nbsp;
               </td>
               <td>
                  <c:out value="${row.title}"/>
                  &nbsp;
               </td>
            </tr>
         </c:forEach>
      </table>
   </body>
</html>


Henner

______________________________________________________________________
You are receiving this email because you elected to monitor this forum.
To stop monitoring this forum, login to SourceForge.net and visit: 
https://sourceforge.net/forum/unmonitor.php?forum_id=55830


-------------------------------------------------------
This SF.Net email is sponsored by Oracle Space Sweepstakes
Want to be the first software developer in space?
Enter now for the Oracle Space Sweepstakes!
http://ads.osdn.com/?ad_id=7393&alloc_id=16281&op=click
_______________________________________________
DbForms Mailing List

http://www.wap-force.net/dbforms

Reply via email to