RE: Multiple parameters in sqlmap parameters.

2009-06-03 Thread meindert
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

Re: Multiple parameters in sqlmap parameters.

2009-06-01 Thread Jeff Stahl
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