Re: So, Google uses Tomcat and Apache SOAP...

2002-04-21 Thread Santiago Gala
Paulo Gaspar wrote: >http://www.beblogging.com/blog/20020417-221452 > >Have fun, >Paulo Gaspar > This is all your spamming? I see better and much longer every day :-) -- To unsubscribe, e-mail: For additional commands, e-mail:

Subproject Proposal - crossdb

2002-04-21 Thread travis
Hi, I would like to propose a new subproject for Jakarta and I will give some details below. The project is called crossdb and can be found at www.crossdb.com. What is it? crossdb is a Java API that is used to create SQL statements that are database independent. So you can write an applicati

Re: Subproject Proposal - crossdb

2002-04-21 Thread Andrew C. Oliver
Out of morbid curiosity... I couldn't find this answered on the website... How is this different then hsql (hsqldb.sourceforge.net) and why would I want to use it as opposed to hsql? On Sun, 2002-04-21 at 21:10, [EMAIL PROTECTED] wrote: > Hi, > > I would like to propose a new subproject for Ja

RE: Subproject Proposal - crossdb

2002-04-21 Thread Tim Vernum
From: Andrew C. Oliver [mailto:[EMAIL PROTECTED]] > On Sun, 2002-04-21 at 21:10, [EMAIL PROTECTED] wrote: > > The project is called crossdb and can be found at www.crossdb.com. > > > > What is it? > > crossdb is a Java API that is used to create SQL statements > that are database independent.

Re: Subproject Proposal - crossdb

2002-04-21 Thread Jon Scott Stevens
If anything, crossdb is something that is a few generations behind Torque in terms of functionality and design. http://jakarta.apache.org/turbine/torque/ Funny how all the rage recently seems to be creating these OR tools. -jon on 4/21/02 7:29 PM, "Tim Vernum" <[EMAIL PROTECTED]> wrote: >

RE: Re: Subproject Proposal - crossdb

2002-04-21 Thread travis
Actually Jon, Torque and crossdb are quite a bit different. Torque is pre generated and requires some preliminary setup and doesn't deal with SQL statements directly. Whereas crossdb is on the fly and is an object oriented way of creating SQL statements that are database independent. Torque

RE: Re: Subproject Proposal - crossdb

2002-04-21 Thread dion
[EMAIL PROTECTED] wrote on 22/04/2002 03:59:43 PM: > Actually Jon, > > Torque and crossdb are quite a bit different. Torque is pre > generated and requires some preliminary setup and doesn't deal with > SQL statements directly. Whereas crossdb is on the fly and is an > object oriented way o

Re: Subproject Proposal - crossdb

2002-04-21 Thread Jon Scott Stevens
I never said they were the same. I said that crossdb is a few generations behind Torque in design and thinking. Torque's code generation is the way to go in terms of OR tools. Anything else, IMHO, is backwards. You also left out all the code related to getting the 'conn' object. Torque abstracts

Re: Subproject Proposal - crossdb

2002-04-21 Thread Jon Scott Stevens
on 4/21/02 11:38 PM, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: >> iq.addAutoIncrementColumn("emp_id"); > > And for databases without an auto-increment feature?? FYI, Torque looks at what database driver you are using an will generate the right SQL/process to emulate auto-increment (assumin