[jira] Commented: (IBATIS-53) Support for oracle cursors as resultsets

2006-02-09 Thread Mohamed Arif (JIRA)
[ http://issues.apache.org/jira/browse/IBATIS-53?page=comments#action_12365702 ] Mohamed Arif commented on IBATIS-53: Hi Michael Faqan, Thank You. Regards, RF Support for oracle cursors as resultsets

Problem with HashMap and List

2006-02-09 Thread Ext_Friedrich, Stefan
Title: Problem with HashMap and List Hi, I've just encountered a big problem with my iBatis-Application. First I implemented a DOM and used it in the class=-Properties of my resultMaps. Now we decided, to change the architecture to a HashMap-Structure of the following: HashMap as some

[jira] Commented: (IBATIS-156) configured type handler not used in insert

2006-02-09 Thread Mohamed Arif (JIRA)
[ http://issues.apache.org/jira/browse/IBATIS-156?page=comments#action_12365722 ] Mohamed Arif commented on IBATIS-156: - Hi, I am trying to work on TypeHandler as one of the column returned by my ResultSet is of type CHAR. I am getting

Re: support

2006-02-09 Thread Larry Meadors
What is it that you are trying to accomplish with this? Larry On 2/9/06, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Hello developers Can you support getting context (id) informations within a DAO impl instance? There is only a access to the daoManager instance that is set in the

Re: support

2006-02-09 Thread Manuel . Raedle
Hello, I will have access to other DAO instances within a DAO instance to have access to other data infos. Therefore I need the context id of current DAO instance. For example: I have a UserSqlMapDao and a GroupSqlMapDao. I support requesting users with group infos. Therefore I will request

Re: Oracle ref cursors

2006-02-09 Thread Clinton Begin
So the assumptions made here are: * There can be only one out parameter of type ResultSet * The default result set (possibly returned from a SELECT) is lost, as it's overidden by the ResultSet parameter. Seems a bit hackey, but I'm interested in everyone else's opinion. ClintonOn 2/9/06, Sven

Re: Oracle ref cursors

2006-02-09 Thread Sven Boden
There can be more than 1 out result sets, Michael's testcases on the wiki show that. Will check the second bullet tomorrow, we can probably find a way around it it should also be just a resultset (but I vaguely remember some problems with it from past experiments). Sven Clinton Begin

Re: Oracle ref cursors

2006-02-09 Thread Clinton Begin
Yep. I agree on the need. Just being cautious about the implementation.Cheers,ClintonOn 2/9/06, Sven Boden [EMAIL PROTECTED] wrote:In case anyone is interested in having a look, I uploaded the patch to the patch to the

Re: Oracle ref cursors

2006-02-09 Thread Clinton Begin
Hmmm...ok. Here's what I'd like to see in a solution: * No dependency upon Oracle (like you've said). * ResultSet types should be supported in both OUT parameters, as well as result set columns (ick). * The regular result set returned by a select statement or procedure should not be

[jira] Commented: (IBATIS-252) closing resultset cursor in Ibatis

2006-02-09 Thread Sven Boden (JIRA)
[ http://issues.apache.org/jira/browse/IBATIS-252?page=comments#action_12365852 ] Sven Boden commented on IBATIS-252: --- If you return ResultSets to your application it's the application's responsibility to close them. iBATIS has no way of tracking the