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=26484>.
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=26484

ColumnSeparator in SQLExec

           Summary: ColumnSeparator in SQLExec
           Product: Ant
           Version: unspecified
          Platform: Other
        OS/Version: Other
            Status: NEW
          Severity: Enhancement
          Priority: Other
         Component: Core tasks
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


I'd like to use "SQLExec" to convert data from a RDBMS to a tab separated text.
But it's not possible to change a separator string between columns.
So, I've changed the code like follows.

#printResults(PrintStream out)
if (first) {
        first = false;
} else {
        line.append(getColumnSeparator());
}
line.append(columnValue);


I hope it's possible to configure a separator on columns in "SQLExec".

Thank you.
Best regards,

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

Reply via email to