RE: Implicit Mapping and Dynamic SQL

2005-05-03 Thread Jason Hall
batis-user-java@incubator.apache.orgSubject: Re: Implicit Mapping and Dynamic SQL The remapResults attribute is used if you have a need to dynamically change the result map when the statement is called. While this makes the returned data more flexible, the cost is pretty

Re: Implicit Mapping and Dynamic SQL

2005-05-03 Thread Brandon Goodin
so does it only work for 2.1.0? > > I'm using 2.0.8. > > > -Original Message- > From: Larry Meadors [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 03, 2005 7:48 AM > To: ibatis-user-java@incubator.apache.org > Subject: Re: Implicit Mapping and Dynamic SQ

RE: Implicit Mapping and Dynamic SQL

2005-05-03 Thread Jason Hall
licit Mapping and Dynamic SQL The remapResults attribute is used if you have a need to dynamically change the result map when the statement is called. While this makes the returned data more flexible, the cost is pretty high, so use it with caution. Larry On 5/3/05, Jason Hall &l

Re: Implicit Mapping and Dynamic SQL

2005-05-03 Thread Larry Meadors
The remapResults attribute is used if you have a need to dynamically change the result map when the statement is called. While this makes the returned data more flexible, the cost is pretty high, so use it with caution. Larry On 5/3/05, Jason Hall <[EMAIL PROTECTED]> wrote: Hi, I us

Implicit Mapping and Dynamic SQL

2005-05-02 Thread Jason Hall
Title: Implicit Mapping and Dynamic SQL Hi, I use the following sqlMap statement. select * from $table$ In my java code this works List l = queryForList("selectTable","TABLE_A"); but when i do this with same statement id (selectTable) ... List l = query