Re: Additions to generated XML

2008-02-26 Thread Daniel López
Patch added to issue DDLUTILS-87, with a small description and a sample usage with the databaseToDdl Ant task. S! D. Thomas Dudziak escribió: On Mon, Feb 25, 2008 at 11:57 PM, Daniel López <[EMAIL PROTECTED]> wrote: After some comments on this list, I noticed that DDLUtils is based current

Re: Additions to generated XML

2008-02-26 Thread Thomas Dudziak
On Mon, Feb 25, 2008 at 11:57 PM, Daniel López <[EMAIL PROTECTED]> wrote: > After some comments on this list, I noticed that DDLUtils is based > currently on Java 1.3, so my patch would not work as I was thinking the > base was 1.4 and String.matches(regexp) was not present in Java 1.3. > > So

Re: Additions to generated XML

2008-02-25 Thread Daniel López
Hi, After some comments on this list, I noticed that DDLUtils is based currently on Java 1.3, so my patch would not work as I was thinking the base was 1.4 and String.matches(regexp) was not present in Java 1.3. So, I can add the patch as attachemnt to the JIRA issue or wait until DDLUtils i

Re: Additions to generated XML

2008-02-22 Thread Thomas Dudziak
On Fri, Feb 22, 2008 at 5:28 AM, Daniel López <[EMAIL PROTECTED]> wrote: > I added initial support for the filtering of "tables" (quoted as they > can be tables, views or other table types). I simply added a new > parameter to the DatabaseToDdlTask and passed the parameter until it > reaches t

Re: Additions to generated XML

2008-02-21 Thread Thomas Dudziak
On Wed, Feb 20, 2008 at 11:39 PM, Daniel López <[EMAIL PROTECTED]> wrote: > I don't have a list of databases that use radix, but a quick search says > that Oracle and SQLServer have it and the Apache Derby JDBC driver also > returns some value for it. HSQLDB on the other hand does not seem to >

Re: Additions to generated XML

2008-02-20 Thread Daniel López
Hi, I don't have a list of databases that use radix, but a quick search says that Oracle and SQLServer have it and the Apache Derby JDBC driver also returns some value for it. HSQLDB on the other hand does not seem to have anything about it in the documentation... or MySQL, or Informix... not

Re: Additions to generated XML

2008-02-20 Thread Thomas Dudziak
Hi Daniel, On Feb 20, 2008 1:04 AM, Daniel López <[EMAIL PROTECTED]> wrote: > In SQL, you can have something like... > ... > CREATE TABLE TFOR_CATEGORY > ( >CAT_CODE CHAR(32)NOT NULL, >... >CONSTRAINT KFOR_CAT_PK PRIMARY KEY (CAT_CODE) > ) > ... > and in o

Re: Additions to generated XML

2008-02-20 Thread Daniel López
Hi Thomas, Glad to hear you are so open to colaboration, let me see if I can show you what I meant with some examples. .- Include the name and information of the constraints, so it is not lost. We usually put explicit names in our constraints and those names can be used to identify errors mor

Re: Additions to generated XML

2008-02-19 Thread Thomas Dudziak
Hi Daniel, On Feb 18, 2008 12:42 AM, Daniel López <[EMAIL PROTECTED]> wrote: > On one hand, we were using Torque ant tasks to generate the XML from the > DB schema and generate automatically some code from the XML, and as we > needed some extra info, we did some modifications to the generator cod