Hi.

This would be great, booth possibilities! Its in plan do this in 3.0 release?

-------------------------- Original message --------------------------
 From: Clinton Begin <[email protected]>
 Subject: two parametr in Mapper method
 Date: Monday, October 5, 2009, 4:52:08 AM
Attachments: Zpráva.html
 msgid:[email protected]


There's no way to introspect on the parameter names. 



So your choices become:



@Select({"SELECT * FROM send LIMIT #{1}, #{2}"})
List getAllItems(int offset, int limit);



...Or...



@Select({"SELECT * FROM send LIMIT #{offset}, #{limit}"})
List getAllItems(@Param("offset") int offset, @Param("limit") int limit);



Both suck. But we'll probably default to the first, and allow for the second.


------------------------ Konec původní zprávy ------------------------

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to