java 連線到遠端mysql資料庫

2021-04-01 02:20:34 字數 636 閱讀 8671

首先載入mm.mysql2.0.4-bin.jar驅動,並把其加入classpath,注意一定要開啟遠端mysql的你的主機的訪問許可權

然後編寫如下**

string name=".gjt.mm.mysql.driver";///載入jdbc driver

string url="jdbc:mysql://172.20.0.73/jilei";  //連線到172.20.0.73上的jilei的mysql資料庫

class.forname(name),//建立類

con=drivermanager.getconnection(url,"你的username","你的密碼")//建立連線

輸入以下**供測試使用

statement stmt=con.createstatement(resultset.type_scroll_sensitive,resultset.concur_updatable);

string sql="select * from student";

resultset rs=stmt.executequery(sql);

while(rs.next())

rs.close();

stmt.close();

con.close();

遠端連線到mysql

1 進入mysql,建立一個新使用者xuys 格式 grant 許可權 on 資料庫名.表名 使用者 登入主機 identified by 使用者密碼 grant select,update,insert,delete on to xuys 192.168.88.234 identified by ...

java專案無法連線到mysql

背景介紹 1.用來做非洲網路加速測試的專案uc,非常簡單,就一些 js css,還有一個讀資料庫大表的應用,這個表有十幾個欄位,57000行,90 m大 2.開發之前在win 2008的tomcat上跑的很正常 3.拿到我的centos 5.8的tomcat上,跑不起來,資料庫一個連線都沒有,已經排...

gorm 連線mysql 連線到資料庫

連線到資料庫 gorm 官方支援的資料庫型別有 mysql,postgresql,sqlite,sql server mysql go import gorm.io driver mysql gorm.io gorm func main 注意 想要支援完整的 utf 8 編碼,您需要將 charse...

erlang連線到mysql資料庫

erlang連線到mysql資料庫 一,rlang mysql driver svn checkout mysql 2.對src下面的所有原始碼進行編譯 erlc erl 3.然後在mysql 下面建立ebin,並將src 下面的所有 beam拷貝到ebin 下面 4.將mysql整個資料夾拷貝到e...

php連線到MySQL資料庫

在能夠訪問並處理資料庫中的資料之前,必須建立到達資料庫的連線。在 php 中,這個任務通過 mysql connect 函式完成。mysql connect servername,username,password 引數 描述servername 可選。規定要連線的伺服器。預設是 localhost...