RE: Exhausted resultset exception when use Oracle REF cursor type as output parameter from Stored Procedure

2008-05-19 Thread Jesse Reimann
I've previously been told when I was asking about Oracle REF Cursors that I should be using "update" instead of "queryForList". Technically "queryForList" doesn't fully work correctly with REF Cursors since the return list isn't being populated even though the map passed into "queryForList" does se

Does queryWithRowHandler work with Oracle Ref Cursor?

2008-04-02 Thread Jesse Reimann
ndler the RowHandler handleRow method never is executed. Is queryWithRowHandler even supported when mapping to Result Set from an Oracle Ref Cursor? Thanks, Jesse Reimann

Abator Unsupported Data Type Oracle "TIMESTAMP WITH TIME ZONE"

2008-03-27 Thread Jesse Reimann
I need to regenerate my code with Abator? Thanks, Jesse Reimann

RE: Retrieving Oracle column with data type TIMESTAMP WITH LOCAL TIME ZONE

2008-03-19 Thread Jesse Reimann
t.sqlExecuteUpdate(ProcedureStatement.java:30)   at com.ibatis.sqlmap.engine.mapping.statement.GeneralStatement.executeUpdate(GeneralStatement.java:78)   ... 7 more From: Andrey Rogov Sent: Tuesday, March 18, 2008 7:45 PM To: Jesse Reiman

RE: Retrieving Oracle column with data type TIMESTAMP WITH LOCAL TIME ZONE

2008-03-18 Thread Jesse Reimann
ssing TIMESTAMP WITH LOCAL TIME ZONE data ALTER SESSION SET time_zone = #timezonevalue# 2008/3/17, Jesse Reimann <[EMAIL PROTECTED]>: I'm trying to retrieve an Oracle column that is defined as TIMESTAMP WITH LOCAL TIME ZONE. Currently I'm receiv

Retrieving Oracle column with data type TIMESTAMP WITH LOCAL TIME ZONE

2008-03-17 Thread Jesse Reimann
when using iBATIS (and Spring). Thanks, Jesse Reimann

RE: Re: Question about queryForList and Oracle ref cursors

2008-03-11 Thread Jesse Reimann
ting the still empty HashMap to a list and returning that to your method. queryForList doesn't take an object parameter to store the results in, it takes an object parameter to pass variables into your queries. The return value of queryForList is a List of your ResultMapped Models. -Ryan On Mon,

Re: Re: Question about queryForList and Oracle ref cursors

2008-03-10 Thread Jesse Reimann
Ryan I guess you didn't read my original post. I tried both the Hashmap method of queryForList and the way you suggested. The only way I can actually get a populated List back is using the HashMap. If I do it this way : return getSqlMapClientTemplate().queryForList("TEST_TESTPROC.GET_CDDRPT");

RE: Re: Question about queryForList and Oracle ref cursors

2008-03-10 Thread Jesse Reimann
Ryan that's exactly what I did that wouldn't work. It returns to me a List that has 10 elements all which are NULL. Jesse

Question about queryForList and Oracle ref cursors

2008-03-10 Thread Jesse Reimann
Can anyone shed some light on why this is? Is there are way I can change my parameter settings to have queryForList return a List directly when calling a ref cursor? Thanks, Jesse Reimann

RE: iBATIS Batching with Spring DAO

2008-03-05 Thread Jesse Reimann
Thanks for the help. I had seen that code example before but not from the Spring doc so didn't understand the context. After playing with it for a bit I was able to get some test code working with the batching using that method. I don't know if it's my environment config or what but I had to ma

iBATIS Batching with Spring DAO

2008-03-05 Thread Jesse Reimann
oint me in the right direction? Thanks, Jesse Reimann