Re: SqlSession.close() without committing

2010-04-06 Thread cowwoc
Yes, iBATIS will rollback the connection if it deems it necessary. The only time you might need to call rollback explicitly is if you have a "select" that actually updates data in the database. Such is sometimes the case with stored procedures. Clinton, Coming back to our earlier discuss

Re: "JDBC requires that the JdbcType must be specified for all nullable parameters"

2010-04-06 Thread cowwoc
On 07/04/2010 12:09 AM, cowwoc wrote: Hi, I am getting an error message: "JDBC requires that the JdbcType must be specified for all nullable parameters [...] The error may involve -Inline". Granted, telling me the mapper name is useful but I believe we can improve this error message

"JDBC requires that the JdbcType must be specified for all nullable parameters"

2010-04-06 Thread cowwoc
Hi, I am getting an error message: "JDBC requires that the JdbcType must be specified for all nullable parameters [...] The error may involve -Inline". Granted, telling me the mapper name is useful but I believe we can improve this error message in two regards: 1. I mistakenly read

Re: [IBatis3-beta10] nested results for collection

2010-04-06 Thread Clinton Begin
So you have desc in two places? This is getting more confusing. Maybe post the expected result set and the classes you're mapping it to. Clinton On Tue, Apr 6, 2010 at 9:09 PM, Viv Kapadekar wrote: > Yeah actually to make it more clear Class X also has desc. So its really: > Class X { > String

Re: [IBatis3-beta10] nested results for collection

2010-04-06 Thread Viv Kapadekar
Yeah actually to make it more clear Class X also has desc. So its really: Class X { String id String desc List b } If index is null the desc is applicable for X and when its not null it should be applicable to X. --V On Apr 6, 2010, at 7:21 PM, Clinton Begin wrote: If iBATIS finds ANY value

Re: [IBatis3-beta10] nested results for collection

2010-04-06 Thread Clinton Begin
If iBATIS finds ANY values for the mapped properties, it will create the object. Is it possible that the desc column is populated even when the index is null? On Tue, Apr 6, 2010 at 7:52 PM, Viv Kapadekar wrote: > Hi > I have a Class X containing a List of Class Y > > Class X { > String a > List

[IBatis3-beta10] nested results for collection

2010-04-06 Thread Viv Kapadekar
Hi I have a Class X containing a List of Class Y Class X { String a List b } Class Y { String index String desc } The resultMap I have is column="index" /> -->

Re: Eclipse Plugin for iBatis 3.0- beta 10?

2010-04-06 Thread Guy Rouillier
On 4/6/2010 6:18 PM, Viv Kapadekar wrote: Hi All Is there a Eclipse plugin for iBatis 3.0-beta 10 (or the latest) ? Which plugin are you looking for? Eclibatis or Ibator? The former can be installed from here: http://sourceforge.net/projects/eclibatis/develop. The latter hasn't been relea

Re: Need iBatis 3.0 User Guide Other Format..

2010-04-06 Thread Nathan Maves
You can find all of the documentation in SVN. The source is the Microsoft Word document. Once you are done with the translation feel free to contribute it back to the community and we will add it to the site. Nathan http://svn.apache.org/repos/asf/ibatis/java/ibatis-3/trunk/doc/en/ On Tue, Apr

Need iBatis 3.0 User Guide Other Format..

2010-04-06 Thread DongGuk Lee
Hi.. PDF User Guide is only available for download. Other types of files are needed. Will translate into Korean. Give me files or tell me location Thanks - To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org For addi

Eclipse Plugin for iBatis 3.0- beta 10?

2010-04-06 Thread Viv Kapadekar
Hi All Is there a Eclipse plugin for iBatis 3.0-beta 10 (or the latest) ? --Viv - To unsubscribe, e-mail: user-java-unsubscr...@ibatis.apache.org For additional commands, e-mail: user-java-h...@ibatis.apache.org

Typo in iBatis Migrations documentation

2010-04-06 Thread cowwoc
Hi, In the iBatis Migrations documentations you write "Notice that the commands are terminated by a colon." I believe this is a typo. Commands are actually terminated by a "semi-colon". Gili - To unsubscribe, e-mail: use