Can I dynamically bind the table name ?
~Parvinder
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Larry Meadors
Sent: Monday, November 19, 2007 11:20 PM
To: Arora, Parvinder; user-java@ibatis.apache.org
Subject: Re: a primitive question
You can
Hello all,
I just wanted to clarify a doubt before I start coding
I have a POJO
Class foo {
String Id1
String Id2
String Id3
}
My query is
Select value1, value2 from temp
Where temp.id1 in (comma separated values)
AND temp.id2 in (comma separated values)
AND temp.id3 in
Why can't you fetch them as a simple list and then iterate over the list
to create a map?
~Parvinder
-Original Message-
From: eznibe [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 09, 2007 5:19 PM
To: user-java@ibatis.apache.org
Subject: resultMap HashMap and with a list
Hi All,
can