Does replying to your own emails count as talking to yourself? ;-) I've been bold enough to make some changes to TorqueJDBCTransformTask.java and I am now able to generate DECIMAL and NUMERIC columns correctly.
I should have official permission tomorrow to contribute these changes. Is it enough to just send in a diff? Bye, Hilco On Wed, 2005-10-05 at 11:12 -0700, Hilco Wijbenga wrote: > 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] > --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
