Since I found nothing on my specific problem at all, I guess it's a simple question, but I still can't figure it out. I prepared everything for a connection between java and mysql via j/connector, just like stated in the tutorial, but the
ant create-mysql-database
fails with
BUILD FAILED
/home/zynic/Documents/java/JDBCTutorial/build.xml:73: Class Not Found: JDBC driver
com.mysql.jdbc.Driver could not be loaded
and I have no idea why. I set all the variables as the tutorial suggested, as you can see in the following, but still don't get it to work as intended.
What's the (simple?) point I'm missing?
Edit:
To sum the first comments up I am working on my own machine with Sabayon/Gentoo, and the build.xml is edited properly as well.
mysql-sample-properties:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<entry key="dbms">mysql</entry>
<entry key="jar_file">/home/zynic/Documents/java//JDBCTutorial.jar</entry>
<entry key="driver">com.mysql.jdbc.Driver</entry>
<entry key="database_name">testdb</entry>
<entry key="user_name">root</entry>
<entry key="password">root</entry>
<entry key="server_name">localhost</entry>
<entry key="port_number">3306</entry>
</properties>
mysql-build-properties:
<?xml version="1.0" encoding="UTF-8" ?>
<project name="MySQL Properties" default="all" basedir=".">
<property name="JAVAC" value="/var/db/pkg/oracle-jdk-1.7.0.3/bin/javac"/>
<property name="JAVA" value="/var/db/pkg/oracle-jdk-1.7.0.3/bin/java"/>
<property name="PROPERTIESFILE" value="properties/mysql-sample-properties.xml"/>
<property name="MYSQLDRIVER" value="/var/db/pkg/jdbc-mysql-5.1.18/mysql-connector-java-5.1.15-bin.jar"/>
<path id="CLASSPATH">
<pathelement location="classes"/>
<pathelement location="${MYSQLDRIVER}"/>
<pathelement location="lib/JDBCTutorial.jar"/>
</path>
<property name="XALAN" value="/usr/share/xalan/lib/xalan.jar"/>
<property name="DB.VENDOR" value="mysql"/>
<property name="DB.DRIVER" value="com.mysql.jdbc.Driver"/>
<property name="DB.HOST" value="localhost"/>
<property name="DB.PORT" value="3306"/>
<property name="DB.SID" value="testdb"/>
<property name="DB.URL.NEWDATABASE" value="jdbc:mysql://${DB.HOST}:${DB.PORT}/?allowMultiQueries=true"/>
<property name="DB.URL" value="jdbc:mysql://${DB.HOST}:${DB.PORT}/${DB.SID}?allowMultiQueries=true"/>
<property name="DB.USER" value="root"/>
<property name="DB.PASSWORD" value="root"/>
<property name="DB.DELIMITER" value=";"/>
</project>
<entry key="jar_file">/home/zynic/Documents/java//JDBCTutorial.jar</entry>. Try removing the double/. – Thihara Jul 3 '12 at 13:04<classpath></classpath>. And where's your ant script with the tasks defined? – Thihara Jul 3 '12 at 13:51