Re: Custom Type Handler question

2005-05-15 Thread Clinton Begin
The answer to that question is yes (even if the parameterClass is specified).  But is it meant to be part of this thread?  Cheers, Clinton On 5/15/05, Ron Grabowski <[EMAIL PROTECTED]> wrote: If a parameterClass or parameterMap is not specified: and a simple type is passed in, does the Java ver

Re: Custom Type Handler question

2005-05-15 Thread Ron Grabowski
If a parameterClass or parameterMap is not specified: and a simple type is passed in, does the Java version allow the user to name the value something other than #value#? where SeasonYear = #year# --- Clinton Begin <[EMAIL PROTECTED]> wrote: > I'm not really sure what the problem could be.

Re: query to get records columns as List

2005-05-15 Thread Clinton Begin
You can't map columns to list elements...and that's probably a good thing. It doesn't really make sense semantically. What you can do (which is significantly more useful) is map your results to a Map.  That is, your employee table and its 5 columns will be represented as a Map (column1="whatever"

Re: Custom Type Handler question

2005-05-15 Thread Clinton Begin
I'm not really sure what the problem could be.  It should work fine.  Is there no way to just join the data and return a set of repeating groups and use the iBATIS N+1 Selects solution? http://opensource.atlassian.com/confluence/oss/display/IBATIS/How+do+I+get+around+the+N+Plus+1+selects+proble

Re: cache question... how smart are they

2005-05-15 Thread Clinton Begin
Hi Nathan, To answer your questions: >> Does flush really mean flush?  Yep.  There's no invalidate or "dirty state".  It's either there, or it's not. >> When you have a flush-on-insert setup >> does the caches truly flush all elements in the cache?  Yep. >> If so what is the reason behind

Custom Type Handler question

2005-05-15 Thread Ken Katsma
Hi, My group is currently using stored procedures in Oracle for all our database access.  To get around the n+m problem we are considering several alternatives.  One we know will work is to do a user function for each column that maps to a "m" table that gives us the data in string format (name,va

cache question... how smart are they

2005-05-15 Thread Nathan Maves
I have not looked into the source code yet but I want to get some of the basics questions out there first. The real question is ... Does flush really mean flush? When you have a flush-on-insert setup does the caches truly flush all elements in the cache? If so what is the reason behind doing th

Re: Oracle 9.2 connection reset problem

2005-05-15 Thread Fabio Insaccanebbia
Do you have a firewall in the network between the application and database server? Maybe this error is due to the closing of the connection by the firewall (timeout after inactivation). Bye, Fabio [EMAIL PROTECTED] wrote: Hi there! We get a SQLException saying 'connection reset', it seems that

Re: Availability of 2.1.0

2005-05-15 Thread Brandon Goodin
ooops... forgot the link Thought you all might like to see this as well. Scroll to the bottom of the page and you will see the changes that have been made for 2.1.0. http://issues.apache.org/jira/secure/BrowseProject.jspa?id=10601&subset=-1 Brandon On 5/15/05, Brandon Goodin <[EMAIL PROTECTED]>

Re: Availability of 2.1.0

2005-05-15 Thread Brandon Goodin
Thought you all might like to see this as well. Scroll to the bottom of the page and you will see the changes that have been made for 2.1.0. Brandon On 5/13/05, Clinton Begin <[EMAIL PROTECTED]> wrote: > Hi all, > > We have a file to track this. Developers should keep it up to date, and > use

query to get records columns as List

2005-05-15 Thread uap001
Hello, I am new to ibatis and want to know how I can do this. I have a table "employee" and it has 5 columns. I want to query the "employee" table and I want the result either as a List of String[] (where the String[] has column1,column2,column3,column4,column5 values) or as a List of List (where t