[EMAIL PROTECTED] scritti il 23/11/2006 15:17:37

> <select id="gah" resultclass="int">
> select blah as value from sometable
> </select>

Thanks, Larry. It works.
The following java code exerts successfully that SQL Map

   List<Integer> lList = null;
   try
   {
       lList = (List<Integer>) lSqlMapClient.queryForList( "gah", null );
   }
   catch ( SQLException pException )
   {
       pException.printStackTrace();
       throw pException;
   }
   ...

Reply via email to