eclipse配置mysql教程_在Eclipse连接mysql-----配置jbdc_MySQL
1、 安裝mysql這里就不詳述了,詳細可以參考我的博客;
http://blog.csdn.net/u014487509/article/details/26340741
2、下載jdbc:http://www.mysql.com/products/connector/;
3、將mysql-connector-java-5.1.7-bin.jar包拷貝到j(luò)dk的安裝路徑中的lib包中;
4、new一個Dynamic web工程;
5、項目名稱右鍵單擊選擇Build Path->Configure Build Path,在彈出的窗口選擇Libraries->Add External JAR,然后選擇mysql-connector-java-5.1.7-bin.jar,點擊ok;
6、接下來就可以測試數(shù)據(jù)庫是否可以連接成功了。
import java.sql.*; public class Sql { public static void main(String args[]) { try { Class.forName("com.mysql.jdbc.Driver"); //加載MYSQL JDBC驅(qū)動程序 //Class.forName("org.gjt.mm.mysql.Driver"); System.out.println("Success loading Mysql Driver!"); } catch (Exception e) { System.out.print("Error loading Mysql Driver!"); e.printStackTrace(); } try { Connection connect = DriverManager.getConnection( "jdbc:mysql://localhost:3306/test","root","123456"); //連接URL為 jdbc:mysql//服務(wù)器地址/數(shù)據(jù)庫名 ,后面的2個參數(shù)分別是登陸用戶名和密碼 System.out.println("Success connect Mysql server!"); Statement stmt = connect.createStatement(); ResultSet rs = stmt.executeQuery("select * from test"); //user 為你表的名稱 while (rs.next()) { System.out.println(rs.getString("name")); } } catch (Exception e) { System.out.print("get data error!"); e.printStackTrace(); } } }
相關(guān)標簽:
本文原創(chuàng)發(fā)布php中文網(wǎng),轉(zhuǎn)載請注明出處,感謝您的尊重!
總結(jié)
以上是生活随笔為你收集整理的eclipse配置mysql教程_在Eclipse连接mysql-----配置jbdc_MySQL的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 棋盘最短路径 python_Dijkst
- 下一篇: java 8 string_String