Re: IBATIS-459 SQLMAP BUG

2007-10-11 Thread Jeff Butler
IBATIS-459 was not a bug - it was an improper use of JIRA. It probably should have been closed as "invalid" rather than "fixed". For your issue, specify remapResults="true" in your element. Jeff Butler On 10/11/07, dereje abay <[EMAIL PROTECTED]> wrote: > > Hi Guys, > > I am using IBATIS rel

IBATIS-459 SQLMAP BUG

2007-10-11 Thread dereje abay
Hi Guys, I am using IBATIS release 2.3.0.67 in my project. I am getting the same bug filed as IBATIS-459. "the second consecutive dynamic select statement is incorrectly using values from the first dynamic select statement" Here is the scenario. < select id=" getRecords" resultClass ="xml" xmlR

Re: Unknown Column Name problem

2007-10-11 Thread Julio S. G.
To see which SQLMap you have to set the log4j properly, setting: log4j.logger.com.ibatis=DEBUG And the error is pretty self explainded. The column can't be found. Can you execute the SQL (SELECT WID FROM WI.WITABLE) at oracle client? Are you sure that the column WID really exists at table WITABLE

RE: Design Question

2007-10-11 Thread Warren
Sorry, double posted -Original Message- From: Koka Kiknadze [mailto:[EMAIL PROTECTED] Sent: Thursday, October 11, 2007 4:22 PM To: user-java@ibatis.apache.org Subject: Re: Design Question What was wrong with replys you got to this question recenly? Like this one from Larry

Re: Design Question

2007-10-11 Thread Koka Kiknadze
What was wrong with replys you got to this question recenly? Like this one from Larry Meadors: >I think I'd do it in the SQL - that way the rest of the app is clean.

Design Question

2007-10-11 Thread Warren
I know this is not an Ibatis question, but Ibatis makes this much easier to do. I have a field in my db that holds data for two class properties. Example, the field INV_Size = "90 oz" while the class properties are size = "90" and unit = "oz". Is it better to split this field in the SQL Map or in t

RE: retrieve a list of strings, how?

2007-10-11 Thread Niels Beekman
Looks good to me, can you enable debugging and see if the statement actually executes? Also, post the select statement that uses the ClueEntry result map and the corresponding Java-code. Niels -Original Message- From: lihh [mailto:[EMAIL PROTECTED] Sent: donderdag 11 oktober 2007 21:14 T

retrieve a list of strings, how?

2007-10-11 Thread lihh
Hi all, I am very new on iBatis and I have searched this forum and followed few of the examples but still not able to get this to work. In my sqlmap I have this ... ... SELECT fullname FROM members where members.specialid = #id# the id is a special id, multiple people

RE: iBatis rollback issue

2007-10-11 Thread Yuvraj Shinde
Hi Ranjan, You might be using new Session Object every time so it is not roll backing.so check the Objectid of SqlMapSession during runtime you will get the ans. Regards yuvrajs -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, October 11, 2007 4

Re: Design Question

2007-10-11 Thread Koka Kiknadze
>>I have no control over the structure of the db >I think I'd do it in the SQL - that way the rest of the app is clean. +1 And hope that some day you'll gain some control over the structure of the db ;)