Using ant and the jdbc task I've managed to generate a nice schema.xml file for my database.
However, the DECIMAL columns all have been generated without their precision. So if I use this schema.xml all my floating point values are now integers. :-( As an example, the database has a price column of type DECIMAL(19,2) but the generated schema.xml has <column name="price" size="19" type="DECIMAL"/> instead of <column name="price" size="19,2" type="DECIMAL"/> Is there a setting that makes sure that both size and precision end up in the size attribute? Or is this a bug? Bye, Hilco --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
