Re,

> Tool.xml :
> [...]
>   <statement id="getMaxId" resultClass="java.lang.Integer"
> parameterClass="java.util.Map">
>         SELECT MAX(#index#)
>         FROM (#nom#)
>   </statement>
>

I found the problem, I replace the # by $ for non-jdbc type in request, and 
it's ok.

  <statement id="getMaxId" resultClass="java.lang.Integer" 
parameterClass="java.util.Map">
        SELECT MAX($index$) 
        FROM $nom$
  </statement>

Regards,

Stephane Chapeau

Reply via email to