Re: Re: Can anyone offer help on "There is no WRITEABLE property named 'lName'"

2007-08-24 Thread Jeff Butler
Sorry - Abator's auto generated where clause won't be able to handle the REGEXP_LIKE syntax. If it was like this: select * from someTable where someColumn REGEXP_LIKE '[[:digit:]]{3}-[[:digit:]]{4}' ...then we could do it. You'll need to hand code a query for this one. Jeff Butler

RE: TransactionManager thorowing NPE

2007-08-24 Thread chris . mccauley
You are both correct, the SQLMap could not be loaded the way I had it codedoversight because I do it prperly everywhere else.. like this: DaoManager daoManager = DAOFactory.getDAOManager(); AttachmentDAO dao = (AttachmentDAO)daoManager.getDao(AttachmentDAO.class, Constants.SQ

RE: TransactionManager thorowing NPE

2007-08-24 Thread Yee, Richard K CTR DMDC
Christopher, Where are you getting your SqlMapClient? The SqlMapClient can be stored in a static variable once it is built (retrieved from SqlMapClientBuilder.buildSqlMapClient()) Depending on how your SQLMapAttachmentDAOImpl is written, it should also be able to be created once and stored.

Re: Ibatis and JakartaCommonsLoggingImpl logging question

2007-08-24 Thread Jeff Butler
It depends on what else is using it. I think upgrading iBATIS would be safer. Jeff Butler On 8/24/07, Ashish Kulkarni <[EMAIL PROTECTED]> wrote: > > Hi > What is the effect of removing commons-logging from classpath? > > On 8/24/07, Jeff Butler <[EMAIL PROTECTED] > wrote: > > > > You need to co

Re: Ibatis and JakartaCommonsLoggingImpl logging question

2007-08-24 Thread Ashish Kulkarni
Hi What is the effect of removing commons-logging from classpath? On 8/24/07, Jeff Butler <[EMAIL PROTECTED]> wrote: > > You need to configure JCL. This could be as simple as following the > instructions found here: > > http://commons.apache.org/logging/ > > Or, depending on your operating enviro

Re: Question about Abator

2007-08-24 Thread Jeff Butler
Abator doesn't do this. Supplying such a mapping to Abator would be about the same level of difficulty as writing your own SqlMap files for your existing beans. If you have a set of existing beans, then I suggest that you hand code the SqlMap files - it's pretty simple. Jeff Butler On 8/24/07,

Re: Ibatis and JakartaCommonsLoggingImpl logging question

2007-08-24 Thread Jeff Butler
You need to configure JCL. This could be as simple as following the instructions found here: http://commons.apache.org/logging/ Or, depending on your operating environment, you may need to do some other work. For example, WebSphere supplies it's own implementation of JCL that must be configured

Re: Ibatis and JakartaCommonsLoggingImpl logging question

2007-08-24 Thread Ashish Kulkarni
Hi I am using ibatis 2.1.5 , and setting log file is only for 2.2 and above. so i cannot use it, but there are no ibatis debug logs, but logs from JakartaCommonsLoggingImpl Is there some thing i need to add to log file to contral logging by this class Ashish On 8/23/07, Jeff Butler <[EMAIL PROTEC

RE: Question about Abator

2007-08-24 Thread NehaP
But it should be possible. I guess this could be a feature request? Neha. Yuvraj Shinde wrote: > > I think, > > You cannot customize the abator.xml.you have to manually do it your > self. > > Regards > yuvraj > > -Original Message- > From: NehaP [mailto:[EMAIL PROTECTED] > Sent:

RE: Question about Abator

2007-08-24 Thread Yuvraj Shinde
I think, You cannot customize the abator.xml.you have to manually do it your self. Regards yuvraj -Original Message- From: NehaP [mailto:[EMAIL PROTECTED] Sent: Friday, August 24, 2007 6:17 PM To: user-java@ibatis.apache.org Subject: Question about Abator Hi, I wasnt able to find a

Question about Abator

2007-08-24 Thread NehaP
Hi, I wasnt able to find a forum for Abator, hope this is the right forum for this question. Before using Abator, I had a set of beans, say of User and Address, that looked like this [code] public class Address { private String city, street; private int zipCode; // Getters and setters.