Posted By:
Chris_Wang
Posted On:
Tuesday, December 7, 2004 10:55 PM
I encountered this exact error. you need to copy the mysql JDBC driver .jar file from the tomcat library into the ant lib directory. This fixed the problem for me
Posted By:
Anonymous
Posted On:
Tuesday, November 2, 2004 03:44 AM
The Ant buildscript (build.xml) has no hardcoded database settings, it uses properties. If a property is not set, it is represented by its name as used inside the buildscript ${database.jdbc.driver}. So you have to specify the db-settings (I think not only the driver...). Maybe with a property file. Maybe there are more infos in a readme file or at the top of the build.xml.