Getting all Column

This jsp page gives only one Column data ? any ideas...

<html>

<head><title></title></head>

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

<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>

<%@page pageEncoding="UTF-8"%>

<sql:setDataSource var="kaynak" dataSource="jdbc:odbc:Kurs,sun.jdbc.odbc.JdbcOdbcDriver"/>

<sql:query var="al" dataSource="${kaynak}">select * from Customer</sql:query>

<c:forEach var="row" items="${al.rows}">

<li>ID: <c:out value="${row.CustomerId}"/>

Age: <c:out value="${row.Age}"/>

Name : <c:out value="${row.Name}"/>

</li>

</c:forEach>

</body>

</html>

[823 byte] By [maytemura] at [2007-11-26 15:27:33]
# 1
I can't quite follow what your error is, can you give an example of the output, and what is wrong with it.Also include your table structure - and what fields are in the table.
evnafetsa at 2007-7-8 21:43:29 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...
# 2

Frankly there is no error which given but 2 column data is missing.

Here is my database column and data values

Database name : kurs

table name : Customer

Columns : CustomerId (nvarchar)>missing ?

Age (int)-->ok

Name (nvarchar)-->missing ?

Why are the only Age datas are shown ?

maytemura at 2007-7-8 21:43:29 > top of Java-index,Enterprise & Remote Computing,Web Tier APIs...