Re: Generating source code from sql statement

2008-11-20 Thread Alex Shneyderman
it will not work 100% as types will be messed up - just so you know that there will be the need for manual over-write option :-). JDBC often (about 20% for oracle jdbc driver) mis-reports types for the fields on the views and sometimes it simply has no way to detect them. On Thu, Nov 20, 2008 at 2

RE: java.lang.ExceptionInInitializerError

2008-11-20 Thread Shannon, Bryan
Looks like your classpath has an incompatible logging library (commons logging). -Original Message- From: xavan [mailto:[EMAIL PROTECTED] Sent: Tuesday, November 18, 2008 1:34 PM To: user-java@ibatis.apache.org Subject: java.lang.ExceptionInInitializerError My application using iBatis i

Re: Generating source code from sql statement

2008-11-20 Thread Larry Meadors
On Thu, Nov 20, 2008 at 3:25 AM, Ben Shory <[EMAIL PROTECTED]> wrote: > Is there any way to generate the domain object from a query (from multiple > tables) and not from a table? That's kind of an interesting idea - you could do that from JDBC's resultset metadata...someone ought to build that. :

RE: Generating source code from sql statement

2008-11-20 Thread Ben Shory
Thanks, i will automate a view creation form my queries and than generate the sources. From: Dan Turkenkopf [mailto:[EMAIL PROTECTED] Sent: Thursday, November 20, 2008 2:51 PM To: user-java@ibatis.apache.org Subject: Re: Generating source code from sql statement

Re: Generating source code from sql statement

2008-11-20 Thread Dan Turkenkopf
Hi Ben, You can't generate from a query, but you can generate from a view. I don't know if that will help in your case, but it is an option. Regards, Dan Turkenkopf On Thu, Nov 20, 2008 at 5:53 AM, charlie bird <[EMAIL PROTECTED]> wrote: > Don't think so. > I've always pointed A(I)Bator at one

Re: Generating source code from sql statement

2008-11-20 Thread charlie bird
Don't think so. I've always pointed A(I)Bator at one the tables in the query and then hand coded the rest - Doesn't take very long. --- On Thu, 20/11/08, Ben Shory <[EMAIL PROTECTED]> wrote: > From: Ben Shory <[EMAIL PROTECTED]> > Subject: Generating source code from sql statement > To: user-ja

Generating source code from sql statement

2008-11-20 Thread Ben Shory
Hi, Is there any way to generate the domain object from a query (from multiple tables) and not from a table?