DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT <http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12842>. ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND INSERTED IN THE BUG DATABASE.
http://nagoya.apache.org/bugzilla/show_bug.cgi?id=12842 TorqueJDBCTransformTask 3.0b4 bug Summary: TorqueJDBCTransformTask 3.0b4 bug Product: Turbine Version: 3.0 Platform: All OS/Version: Other Status: NEW Severity: Normal Priority: Other Component: Torque AssignedTo: [EMAIL PROTECTED] ReportedBy: [EMAIL PROTECTED] After lots and lots of troubleshooting, I traced down a bug that prevents the jdbc to xml reverse engineering from working. The beta code (3.0b4) has the following line inside the method getTableNames: tableNames = dbMeta.getTables(null, dbSchema, "%", types); Executed like this above, the method returns no tables. However, the correct code should be: tableNames = dbMeta.getTables(dbSchema, null, "%", types); Making this correction, and rebuilding corrected the problem and the code properly mapped my tables. Regards, Mark -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
