Hi,

How do I report bugs with Torque?  I created an account on Scarab after linking 
on the link "Issue Tracking" in the Torque main page.  But there doesn't seem 
to be a Torque category.

Here's the bugs I found in a recent project.  This is with beta 3.

(1) JDBC task -- The schema outputted is incompatible  with that required for 
the OM task.  Specifically, it includes "app-data" which should be removed.  
(The  doctype, the start tag, and the end tag).

(2) JDBC task -- For integer values, it included the line attribute DEFAULT=""  
which needed to be removed.

(3) Setting addSaveMethod=true results in uncompilable OM code.  (doesn't 
implement save method in BaseObject).

(4) The build-torque.xml file doesn't work when classpath is set to false.  I 
needed to change the "if" and "unless" statements in each entry.

old:
  <target
    name="om-classpath"
    if="useClasspath">

  <target
    name="om-template"
    unless="useClasspath">


new:
  <target
    name="om-classpath"
    if="useClasspath=true">

  <target
    name="om-template"
    unless="useClasspath=true">




------------------------------------
Will Glass-Husain  <[EMAIL PROTECTED]>
Forio Business Simulations
office: (415) 440-7500
mobile: (415) 235-4293

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

Reply via email to