RE: accessing sqlmap files in jar files

2008-11-10 Thread Kyunam Kim
x27;t help but think after 5 years of 2.x being out> that this would just come up now.> > Larry> > On Mon, Nov 10, 2008 at 2:11 PM, Kyunam Kim <[EMAIL PROTECTED]> wrote:> > so there is no way to access sqlmap files embeded in jar files at all in> > ibatis?> > other than overriding the framework?> >

Populating Map property from

2008-09-16 Thread Kyunam Kim
Hi All, I don't think it is possible but just in case I'm forgetting something... I'd like to populate a java.util.Map property while in by inserting some column values from a current row. In other words, would it be possible to call a method that takes 2 arguments using ? e.g., p

RE: Regarding Bulk Data Select Query Performance.

2008-09-10 Thread Kyunam Kim
Or if you need to write out to a file in a customized way, RowHandler seems to be a perfect candidate. Thanks, Q From: Chris O'Connell [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 10, 2008 12:17 PM To: user-java@ibatis.apache.org Subject: RE: Rega

RE: ProbeException: The '...' property of the java.util.HashMap class is not a List or Array

2008-09-09 Thread Kyunam Kim
heard any response on this post. I would appreciate it if you could give a 2nd look… :-) Thanks, Q ________ From: Kyunam Kim [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2008 3:00 PM To: user-java@ibatis.apache.org Subject: ProbeException: The '...&#x

FW: ProbeException: The '...' property of the java.util.HashMap class is not a List or Array

2008-09-09 Thread Kyunam Kim
Hi All, I haven't heard any response on this post. I would appreciate it if you could give a 2nd look... :-) Thanks, Q From: Kyunam Kim [mailto:[EMAIL PROTECTED] Sent: Monday, September 08, 2008 3:00 PM To: user-java@ibatis.apache.org Su

ProbeException: The '...' property of the java.util.HashMap class is not a List or Array

2008-09-08 Thread Kyunam Kim
1) In the below, filter.columnValuePairs returns a java.util.List, but I get: Cause: com.ibatis.common.beans.ProbeException: The 'filter.columnValuePairs' property of the java.util.HashMap class is not a List or Array.; nested exception is com.ibatis.common.jdbc.exception.NestedSQLException: W

RE: possible to use isEqual inside iterate tag?

2008-09-05 Thread Kyunam Kim
-java@ibatis.apache.org Subject: Re: possible to use isEqual inside iterate tag? SELECT #return_columns[].someProperty# FROM $table_name$ Jeff Butler On Fri, Sep 5, 2008 at 1:04 PM, Kyunam Kim <[EMAIL PROTECTED]> wrote: > > Hi

possible to use isEqual inside iterate tag?

2008-09-05 Thread Kyunam Kim
Hi all, When iterating a list of my pojos, I'd like to examine a property of each pojo using like SELECT $HOW DO I ACCESS A CURRENT ELEMENT'S PROPERTY HERE?$ FROM $table_name$ Would this be