Thanks Howard, I'm merging this in right now.  Also, I'm going to
remove the string concatentation on this and surrounding lines which
would be better expressed as calls to result.append() (meaning you'll
have a conflict).

Dan


"Howard Lin" <[EMAIL PROTECTED]> writes:

> When I run sql2xml, I got the following in the xml file:
> 
> <database name="null package="null" defaultIdMethod="null"
> baseClass="BaseObject" basePeer="BasePeer">
> 
> The end quote is missing from the name attribute. I attached a simple fix
> for Database.java.
> 
> Howard Lin
> 
> Index: Database.java
> ===================================================================
> RCS file: 
>/home/cvspublic/jakarta-turbine/src/java/org/apache/turbine/torque/engine/database/model/Database.java,v
> retrieving revision 1.8
> diff -r1.8 Database.java
> 284c284
> <         result.append ("<database name=\"" + getName());
> ---
> >         result.append ("<database name=\"" + getName() + "\"");
> 
> ---------------------------------------------------------------------
> 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]

Reply via email to