Is it possible to view the output of an SQL task? In this example I would
like to see the count result as the script runs.
Thanks.
Example task :
<target name="sql_test">
<sql
driver="sun.jdbc.odbc.JdbcOdbcDriver"
url="jdbc:odbc:oracle_db2"
userid="user"
password="password"
>
select count(*) from text;
</sql>
</target>
Output :
sql:
[sql] Executing commands
[sql] 1 of 1 SQL Statements executed succesfully
