需要把mysql的jdbc包加到工程中,通過下面代碼即連接到mysql了
1
2
3
4
5
6
7
8
9
10
11
12
13
14
public Connection getConnection()
{
try{
Class.forName("com.mysql.jdbc.Driver");
System.out.println("資料庫驅動載入成功!");
String url="jdbc:mysql://localhost:3306/dbname"; //dbname改為你資料庫的實際名字
Stirng user="root"; //root改成你實際的資料庫登錄名
String passWord="123"; //123 改為實際的密碼
conn=DriverManager.getConnection(url,user,passWord);
System.out.println("mysql資料庫已連接成功!");
}catch(Exception e){
e.printStackTrace();
}
}
Ⅱ 怎樣用eclipse鏈接資料庫
步驟如下:
1、打開Eclipse。
2、點擊菜單欄的「Window—>Show View—>Data Source Explorer」。
3、在「Data Source Explorer」裡面的「Database Connections」單擊滑鼠右鍵,選擇「New」。
4、在彈出窗口上選擇資料庫類型,然後點「Next」。
5、添加好驅動,填好各項配置。
6、完成後,點「Test Connection」,提示成功即可點「Finish」完成配置。
Ⅲ Eclipse如何連接資料庫
1.在新建的Project中右鍵新建Floder
12
12.說明:這個是使用Driver連接資料庫的,而通常開發中使用的是DriverManager或資料庫連接池,這個僅作為理解資料庫連接事例使用。
Ⅳ 怎樣把eclipse與資料庫連接
下面來創建一個數據:
mysql>CREATE DATABASE test; //創建一個資料庫
mysql>use test; //指定test為當前要操作的資料庫
mysql>CREATE TABLE user (name VARCHAR(20),password VARCHAR(20)); //創建一個表user,設置兩個欄位。
mysql>INSERT INTO user VALUES('huheng','123456'); //插入一條數據到表中
2。打開Eclipse,創建一個項目(my),
操作:右鍵點擊my--->build Path--->add external Archiver...選擇jdbc驅動,點擊確定。
我的項目列表:
3。驅動已經導入,下面我們來寫一個程序驗證一下
import java.sql.*;
publicclass MysqlJdbc {
publicstaticvoid main(String args[]) {
try {
Class.forName("com.mysql.jdbc.Driver"); //載入MYSQL JDBC驅動程序
//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","198876");
//連接URL為 jdbc:mysql//伺服器地址/資料庫名 ,後面的2個參數分別是登陸用戶名和密碼
System.out.println("Success connect Mysql server!");
Statement stmt = connect.createStatement();
ResultSet rs = stmt.executeQuery("select * from user");
//user 為你表的名稱
while (rs.next()) {
System.out.println(rs.getString("name"));
}
}
catch (Exception e) {
System.out.print("get data error!");
e.printStackTrace();
}
}
}
點擊運行程序:
Success loading Mysql Driver!
Success connect Mysql server!
huheng
出現上面結果,說明你連接資料庫成功。
4。可以查看到MySQL裡面的內容,那我們是不是想往MySQL中插入數據呢。
下面的例子,往MySQL的user表中插入100條數據
import java.sql.*;
publicclass Myjproject {
publicstaticvoid main(String args[])
{
try {
Class.forName("com.mysql.jdbc.Driver"); //載入MYSQL JDBC驅動程序
//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","198876");
int num=100;
PreparedStatement Statement=connect.prepareStatement("INSERT INTO user VALUES(?,?)");
for(int i=0;i<num;i++) //定義個100次的循環,往表裡插入一百條信息。
{
Statement.setString(1,"chongshi"+i);
Statement.setString(2,"bo"+i);
Statement.executeUpdate();
}
// } catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
// System.out.println("An error has occurred:"+e.toString());
// e.printStackTrace();
}catch(SQLException e)
{
}
}
}
5.下面我們打開MySQL資料庫進行查看
mysql> show databases; //查看所資料庫
mysql> use test; //使test為當前要操作的資料庫
mysql> show tables; //查看當前資料庫的所有表
mysql> select *from user; //查看當前表(user)的所有信息
Ⅳ eclipse 怎麼配置資料庫連接
1打開Eclipse,找到「Window」--「Show View」--「Other...」
2在彈出的新窗口中,打開文件夾「Data Management」找到「Data Source Explorer」,並單擊「OK」。
3這時候,Eclipse主界面下方會多出一個「Data Source Explorer」標簽欄,在其中「Database Connections」文件夾圖標上單擊右鍵,選中「New...」。
4出現新窗口,找到自己正在使用的資料庫"Oracle",自行起個名字,小編在此起了"cityinfo"這個名字。然後單擊「Next>」
5出現如下窗口時,請單擊右上方圖中所示的符號(位置),注意此步驟。
緊接上步,在新的對話框中,找到你所使用的oracle版本,建議選用Oracle Thin Driver,靈活,方便。
6找到JAR List,若大家使用的是oracle11,請將其中的ojdbc14給remove掉,否則,Eclipse會不停提示出錯。
Ⅵ 如何查找在eclipse中創建的資料庫
工具/原料
jdbc驅動
myEclipse
創建好的Mysql資料庫和表
方法/步驟
導入jdbc驅動包。點擊菜單欄中的Windows→preferences。
在彈出的的界面,找到java→buildpath→user libraries。點擊new,在彈出的的對話框中,填寫名稱,點擊ok。
點擊」add jar「,將jdbc驅動導入到工程中。
點擊ok,完成驅動包導入。
右擊創建的工程名稱,選中preferences。
在彈出的的對話框中,進行如圖所示的操作。
點擊ok,將驅動包導入到工程中。
新建class文件,在文件中輸入,如圖所示的文本
Ⅶ eclipse 怎麼連接資料庫
1、找到配置文件,路徑:項目根目錄configdatabase.php。
Ⅷ Eclipse怎麼打開資料庫
方法/步驟
1、導入jdbc驅動包。點擊菜單欄中的Windows→preferences。
2、在彈出的的界面,找到java→buildpath→user libraries。點擊new,在彈出的的對話框中,填寫名稱,點擊ok。
3、點擊」add jar「,將jdbc驅動導入到工程中。
4、點擊ok,完成驅動包導入。
5、右擊創建的工程名稱,選中preferences。
6、在彈出的的對話框中,進行如圖所示的操作。
7、點擊ok,將驅動包導入到工程中。
新建class文件,在文件中輸入,如圖所示的文本
Ⅸ my eclipse 是資料庫嗎
myeclipse是eclipse的一個衍生版,是開發工具,主要做JSP開發的,也支持其他語言。
資料庫還是需要你單獨安裝,可以用驅動鏈接。
Ⅹ 用eclipse如何創建資料庫
1.首先安裝MySql資料庫,並將資料庫驅動程序文件mysql-connector-java-3.1.12-bin.jar放在Tomcat的common/lib中。
2.在MySQL的登陸用戶名:root,密碼:mysql建立資料庫testdb,
3.表user 基本代碼如下:
<%@ page contentType="text/html;charset=gb2312"%>
<%@ page language="java" import="java.sql.Statement" import="java.sql.*" %><html>
<head>
<title>helloworld.jsp</title>
</head>
<body>
<%
try{
Class.forName("org.gjt.mm.mysql.Driver");
out.println("載入Mysql Driver成功!<br>");
} catch(Exception e)
{
out.println("載入Mysql Driver失敗!<br>");
e.printStackTrace();
}
try{
out.println("開始連接Mysql server!<br>");
Connection connect=DriverManager.getConnection("jdbc:mysql://localhost/testdb?user=root&password=mysql&useUnicode=true&characterEncoding=8859_1");
//jdbc:mysql://localhost/testdb?user=root&password=mysql&useUnicode=true&characterEncoding=8859_1
//jdbc:mysql://localhost/資料庫名user=資料庫登陸用戶名&password=資料庫登陸密碼&useUnicode=是否允許設置字元編碼&characterEncoding=允許設置編碼時,要設置的編碼; out.print("成功連接Mysql server!<br><br>");
Statement stmt = connect.createStatement();
ResultSet rs=stmt.executeQuery("select * from user");
out.print("讀取數據如下:<br>");
while(rs.next())
{
out.println(rs.getInt(1));
out.println(rs.getString(2)+"<br>");
}
} catch(Exception e)
{
out.print("獲得數據錯誤!");
e.printStackTrace();
}
%>
</body>
</html>
4.注意:如果只寫import="java.sql.*" ,不寫import="java.sql.Statement" 則在Statement
stmt = connect.createStatement();其中Statement下面顯示是紅色波浪線,程序調用資料庫等一切正常。