NetBeans 7.4 で Hibernate 3.6.10 を使用して MySQL データベースに接続しようとしていますが、新しい「Hibernate Mapping Wizard」を作成しようとすると、次のエラー メッセージが表示されます。
Unable to connect: Cannot establish a connection jdbc:mysql://localhost:3306/mydbname using apache.org.derby.jdbc.ClientDriver(Unable to find a suitable driver)
これは私の「hibernate.cfg.xml」ファイルです:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
<property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
<property name="hibernate.connection.url">jdbc:mysql://localhost:3306/database</property>
<property name="hibernate.connection.username">username</property>
<property name="hibernate.connection.password">password</property>
</session-factory>
</hibernate-configuration>
ここで別の同様の問題を見つけました:休止状態 - DB に接続できませんが、何が問題なのかまだわかりません。
よろしくお願いします。
アンドレア