Let's say in my sql statement I want to do:
WHERE numberOfCookies >= 10
How do I do this in iBatis?
|
Because the SQL is written in xml, you cannot just use the symbol ">", you need to write it as:
|
|||
|
|
|
Why does it not work? The only thing I can think of is that the |
|||
|
|
Is this what you want?
See Dynamic SQL at ibatis.apache.org. |
|||
|
less than or equal, but ask for>=? – Peter Lang Jan 7 '10 at 20:33