Use a map as parameterClass.
As larry said, the GRD (Get R' Done) approach to do this:
Map param = new HashMap();
param.put("id", yourInt);
param.put("description", yourString);
-Original Message-
From: NathanM [mailto:nathan.mel...@infdig.com]
Sent: 01 June 2009 11:45 PM
To: user-java
Actually, the easiest way to handle the same thing is to put both
parameters into a Map (HashMap works nicely), and pass the Map as the
single parameter that iBATIS methods take.
Hope This Helps,
Jeff Stahl
NathanM wrote:
Please excuse me if this turns out to be a dumb question.
Is it poss