MySQL: http://www.mysql.com/
MySQL JDBC驅動: http://dev.mysql.com/downloads/connector/j/5.0.html
MySQL-Front : http://www.mysqlfront.de/
Hebernate: http://www.hibernate.org/
Hebernate相關工具: http://sourceforge.net/projects/hibernatesynch/
另外,轉載一篇在eclipse中串連mysql的文章:
eclipse中資料庫連接mysql配置:
1. 下載 mysql-connector-java-5.0.3
地址:http://www.mysql.org/get/Downloads/Connector-J
2.下載解壓後將其中的壓縮包:mysql-connector-java-5.0.3-bin.jar 拷貝的項目的Libraries.
具 體步驟如下:
先將壓縮包拷貝到項目的目錄下, 再在Projece Explorer中選擇你要的設定項目,點右鍵選擇 properties->Java Build Path -> Libraries ->Add JARs 這樣就ok了,下面是一個串連的例子,引用別人的。但我驗證過了沒問題的:
import java.sql.*;
public class DataBaseCont{
public static void main(String[] args){
try{
Connection conn; Statement stmt; ResultSet res;
Class.forName("com.mysql.jdbc.Driver").newInstance();
conn = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test",
root","");
stmt = conn.createStatement();
res = stnt.excuteQuery("select * from contact");
while(res.next()){ String name = res.getString("name");
System.out.println(name); } res.close();
} catch(Exception ex){
System.out.println("ERRo:" + ex.toString());
}
}
}
注意:不要將com.mysql.jdbc.Driver import到你的類中,因為它已經在你的Libaries了。