I did find an issue that is preventing some packages from loading into
Oracle. I have attached a diff -u that fixes it (one line, pretty self
explanatory). Please commit it. 

-Rob A

-----Original Message-----
From: Steve Loughran [mailto:[EMAIL PROTECTED]
Sent: Thursday, March 13, 2003 1:43 PM
To: Ant Developers List
Subject: Re: sql triggers, stored procedures, packages, format preserved



----- Original Message -----
From: "Anderson, Rob H - VSCM" <[EMAIL PROTECTED]>
To: "'Ant Developers List'" <[EMAIL PROTECTED]>
Sent: Thursday, March 13, 2003 13:04
Subject: RE: sql triggers, stored procedures, packages, format preserved


> Steve, My build process will rely heavily on this task to load packages,
> procedures, triggers, view, types, and apply grants in Oracle9i. I agree
> that some tests are needed and I will look into creating some. Thanks,
>
> -Rob Anderson


It is in there, via an FTP to a unix box where patch works reliably. We need
expanded documentation and testing, now. The task could also do with a
switch to turn on property expansion.


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

Index: SQLExec.java
===================================================================
RCS file: 
/home/cvspublic/ant/src/main/org/apache/tools/ant/taskdefs/SQLExec.java,v
retrieving revision 1.51
diff -u -r1.51 SQLExec.java
--- SQLExec.java        14 Mar 2003 09:24:41 -0000      1.51
+++ SQLExec.java        4 Apr 2003 01:38:05 -0000
@@ -375,6 +375,7 @@
             }
             try {
                 statement = conn.createStatement();
+                statement.setEscapeProcessing(false);
 
             
                 PrintStream out = System.out;

Reply via email to