Re: Who wants to write JPetStore 6 (or any other example)?

2009-08-13 Thread Steven A
; > certainly a fine enough solution. In then end isn't about who is willing > to > > do it. No need to ask permission. Just do it. Even if we have 10 > JPetStores > > implemented with 10 different frameworks it's all good. > > Brandon > > > > On Thu,

Re: Who wants to write JPetStore 6 (or any other example)?

2009-08-13 Thread Steven A
chricht --- >> Absender: Nathan Maves >> Datum: 13.08.2009 22:54 >> >> >>> My vote is guice(DI) with stripes as the controller and jQuery UI for the >>> front end. >>> >>> >>> On Thu, Aug 13, 2009 at 2:25 PM, Steven A wrote: >>&g

Re: Who wants to write JPetStore 6 (or any other example)?

2009-08-13 Thread Steven A
u, Aug 13, 2009 at 1:22 PM, Warren Bell wrote: > How about Spring and Wicket? > > Steven A wrote: > >> Would you be opposed to: >> >> Spring for dependency injection >> Spring-mvc for the web framework >> >> >> >> On Thu, Aug 13, 2009

Re: Who wants to write JPetStore 6 (or any other example)?

2009-08-13 Thread Steven A
Would you be opposed to: Spring for dependency injection Spring-mvc for the web framework On Thu, Aug 13, 2009 at 5:49 AM, Clinton Begin wrote: > Hi all, > > If anyone would like to write JPetStore 6, please let me know. Key things > to do: > > * Upgrade it to iBATIS 3 > * Ditch the DAO l

Re: JUnit DAO queries test OK but JUnit DAO non-queries are a mystery?

2009-07-06 Thread Steven A
David, Rather than have us guess at your problem, be a little more helpful and post some code, as well as your configuration. Try setting jdbc autocommit to true. That should clear up your problem On Mon, Jul 6, 2009 at 7:21 AM, David Brown wrote: > Hello Larry, thanks for the speedy rep

Re: multiple table mapping scenario.

2009-06-12 Thread Steven A
Axel, That solves my problem. Sorry I wasn't able to find that in the documentation. My testcase now passes! Thanks. On Fri, Jun 12, 2009 at 1:11 AM, Leucht, Axel wrote: > I don't fully understand you're problem but to get rid off the '' around > the string you should give > > select * from

multiple table mapping scenario.

2009-06-12 Thread Steven A
Hello all, new to iBatis, here goes. I have a table structure like this: create table zomg_zh ( id int(10) not null, name varchar(64) null, age int(10) null, primary key(id), unique(id) ) create table zomg_er ( id int(10) not null, name varcha