RE: xml persistence

2010-05-13 Thread OBender
I think you should rather look into the JDBC drivers for XML data sources, e.g., http://www.csv-jdbc.com/stels_xml_jdbc.htm This way you could use iBatis (as almost any ORM and ORM like tools). > -Original Message- > From: Larry Meadors [mailto:larry.mead...@gmail.com] > Sent: Thursday, M

optimistic locking

2010-01-16 Thread OBender
Hi All, I've noticed that as of iBatis 2.5.x there were no optimistic locking support (as per Google search :)) in iBatis. Has anything changed since then? Thanks.

RE: is there any chance the https://issues.apache.org/jira/browse/IBATIS-717 will be implemented?

2010-01-05 Thread OBender
n 5, 2010 at 9:31 AM, OBender wrote: It's a feature not a bug but pretty important one I think.

is there any chance the https://issues.apache.org/jira/browse/IBATIS-717 will be implemented?

2010-01-05 Thread OBender
It's a feature not a bug but pretty important one I think.

RE: Mapping int type in constructor of resultMap type

2010-01-05 Thread OBender
You have to use javaType="_int" not javaType="int" in the XML to map the primitive type. I submitted this as an issue and Clinton kindly fixed it in B6 or B5 I believe :). From: Clinton Begin [mailto:clinton.be...@gmail.com] Sent: Tuesday, January 05, 2010 10:06 AM To: user-java@ibatis.apach

RE: Enjoy the power of iBatis3 + google-guice2

2009-12-21 Thread OBender
M To: user-java@ibatis.apache.org Subject: Re: Enjoy the power of iBatis3 + google-guice2 Hi guys, thanks for your kind replies!!! @OBender: yes, the intention is absolutely realizing it, do you have already some idea how should it work? Not in terms of APIs that's clear, but in terms of

RE: Enjoy the power of iBatis3 + google-guice2

2009-12-21 Thread OBender
Hi Simon, Are you guys planning on supporting something like @Transaction attribute via Guice AOP and iBatis TX manager? Thanks, OBender -Original Message- From: Simone Tripodi [mailto:simone.trip...@gmail.com] Sent: Monday, December 21, 2009 11:33 AM To: user-java@ibatis.apache.org

RE: feature request for iBatis3

2009-12-16 Thread OBender
Can you create a jira ticket for this? It might actually already work, if we allow it in the DTD. Clinton On 2009-12-16, OBender wrote: > Hi All, > > > > I guess this is a corner case but it is pretty important one for projects > with legacy data models. > > Let say the

feature request for iBatis3

2009-12-16 Thread OBender
Hi All, I guess this is a corner case but it is pretty important one for projects with legacy data models. Let say there is a table in DB that contains: ColumnType idint s1string s2string

explicit transaction demarcation in 3.0?

2009-12-09 Thread OBender
Hi All, I'm a bit puzzled on how to explicitly manage the transaction demarcation in iBatis 3.0. Before we had SqlMapClient with transaction lifecycle methods, now it looks like SqlSession is responsible for this task but there is no explicit control over the transaction demarcation. Am I

constructor mapping and primitive types - bug or feature?

2009-11-28 Thread OBender
Hi All, There is one very strange issue. If there is a constructor with primitive argument, say long and you have a mapping with: --- public class T1 { final private long xxx; public T1( long xxx ) {

constructor result mapping with primitives doesn't work

2009-11-23 Thread OBender
Hi All, There is one very strange issue. If there is a constructor with primitive argument, say long and you have a mapping with: --- public class T1 { final private long xxx; public T1( long xxx ) {

Google Guice integration question

2009-10-12 Thread OBender
Hi All, Is there any work done anywhere to make integration of iBatis (v3?) with Google Guice easier? I'm interested in @Transaction support in particular. Any info/pointers/ideas? Thanks, OBender

does anyone know when v.3.0 is planned to come out of beta?

2009-10-09 Thread OBender
Hi All, I'm wondering if there is any info when iBatis 3.0 is coming out of beta? Thanks.