Hi all,
I am executing an sql file as follows:
<sql userid="${USERNAME}" password="${PASSWORD}" url="${CONNECTSTRING}"
driver="${DRIVER}"
autocommit="true" src="mysql-dump.sql">
</sql>
With the above snippet of code I tried to execute a mysql dump file. It gave an sql
fail error. Ant ignores
lines starting with -- or // or REM words. But mysql dump file contains # as comments.
Now I wanted to
tell the ant that "ignore the lines starting with this particular character or word".
Is there any way to do?
- Chandu.