I have a table with a column declared as NUMERIC with a default value.
Torque is generating the right SQL ( after I modified db.props for
Oracle), but is generating this wrong java code:
    private BigDecimal max_count=100;

It should be:
    private BigDecimal max_count=new BigDecimal(100);

Gabriel


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to