DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUGĀ·
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://issues.apache.org/bugzilla/show_bug.cgi?id=38807>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED ANDĀ·
INSERTED IN THE BUG DATABASE.

http://issues.apache.org/bugzilla/show_bug.cgi?id=38807





------- Additional Comments From [EMAIL PROTECTED]  2006-03-02 02:49 -------
> I see what you want here andrew, but I'm not sure what we are going to do 
> about
> it. 

Does the attached patch help the decision any? :-)

>To an extent the error handling of ant is a bit, well, messy; we have
> limited policy hard coded into the tasks themselves.
> 
> Take a look at the ant-contrib project on sf.net, in particular their 
> try/catch
> task. Then look at <macrodef> and see what it would take to actually implement
> what you want in a macro. something like (
> 
> <macrodef name="mysql">
>  <attribute name="errors"/>
>  <attribute name="file" />
>  <sequential>
> <trycatch property="errormessage" >
>   <try>
>    <sql >
>     <transaction file="@{file}" />
>    </sql>
>   </try>
>   <catch>
>    <echo level="verbose" >${errormessage}</echo>
>    <property name="@{errors}" value="${errormessage}"/>
>   </catch>
> </trycatch>
> </sequential>
> </macrodef>
> 
> If you fill the <sql> bit in with your DB connection, you get a task you can 
> use
> like
>  <mysql errorproperty="errs" file="drop-db.sql" />
>  <mysql errorproperty="errs" file="create-db.sql" />
>  <mysql errorproperty="errs" file="create-user.sql" />
>  <mysql errorproperty="errs" file="populate-db.sql" />

That won't work with a fileset, though, will it? (I don't much fancy having to
add another line every time there's a new stored proc)  And even if I could come
up with a similar macro that passed through a fileset, it would still stop after
the first sql file & statement that threw an error (at least, the first from
each call to the macro), instead of dumping all the errors to the log.  Or am I
missing something?

-- 
Configure bugmail: http://issues.apache.org/bugzilla/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

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

Reply via email to