Hi,

I'm just getting started working with some of the Jakarta Taglibs. One thing
I'm interested in doing is something like this.

Let's say I've run a query and returned a result and want to place the value
of a column into local variable. This obviously bombs.

<sql:statement id="stmt1" conn="conn1"> 
  <sql:query>
    select emp_id, fname, lname, hire_date 
        from employee
        where fname like 'aria%'
    order by 2
  </sql:query>
<sql:resultSet id="rset2">
        <% String ls_fname="<sql:getColumn colName="fname"/>";%> 
  </sql:resultSet>
</sql:statement>


How would I do this? 

Thanks,

Chris



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

Reply via email to