You are viewing a plain text version of this content. The canonical link for it is here.
Posted to taglibs-user@tomcat.apache.org by Emiliano <br...@libero.it> on 2003/04/25 13:50:29 UTC

how can i retrieve columns data type from access with JSTL?

how can i  retrieve columns data type from access with JSTL?
<!-- for each row in the result -->
  <c:forEach var="row" items="$result.rows">
    <tr>
    <!-- for each column in the row -->
    <c:forEach var="column" items="$row.columns">
      <td><c:expr value="$column"/></td>
    </c:forEach>
    </tr>
  </c:forEach>

 it doesn't work!!!
the loop
<c:forEach var="column" items="$row.columns">
is empty...

it seems as the Metadata class doesn't exist...

thanks

Emiliano