MySql 連接字串詳解

來源:互聯網
上載者:User

mysql JDBC 驅動常用的有兩個,一個是gjt(Giant Java Tree)組織提供的mysql驅動,其JDBC Driver名稱(JAVA類名)為:org.gjt.mm.mysql.Driver
詳情請參見網站:http://www.gjt.org/
另一個是mysql官方提供的JDBC Driver,其JAVA類名為:com.mysql.jdbc.Driver
驅動下載網址:http://dev.mysql.com/downloads/,進入其中的MySQL Connector/J地區下載。

mysql JDBC URL格式如下:
jdbc:mysql://[host:port]/[database][?參數名1][=參數值1][&參數名2][=參數值2]...

參數名稱 參數說明 預設值 最低版本要求
user 資料庫使用者名稱(用於串連資料庫) 所有版本
password 使用者密碼(用於串連資料庫) 所有版本
useUnicode 是否使用Unicode字元集,如果參數characterEncoding設定為gb2312或gbk,本參數值必須設定為true false 1.1g
characterEncoding 當useUnicode設定為true時,指定字元編碼。比如可設定為gb2312或gbk false 1.1g
autoReconnect 當資料庫連接異常中斷時,是否自動重新串連? false 1.1
autoReconnectForPools 是否使用針對資料庫連接池的重連策略 false 3.1.3
failOverReadOnly 自動重連成功後,串連是否設定為唯讀? true 3.0.12
maxReconnects autoReconnect設定為true時,重試串連的次數 3 1.1
initialTimeout autoReconnect設定為true時,兩次重連之間的時間間隔,單位:秒 2 1.1
connectTimeout 和資料庫伺服器建立socket串連時的逾時,單位:毫秒。 0表示永不逾時,適用於JDK 1.4及更高版本 0 3.0.1
socketTimeout socket操作(讀寫)逾時,單位:毫秒。 0表示永不逾時 0 3.0.1

對應中文環境,通常mysql串連URL可以設定為:
jdbc:mysql://localhost:3306/test?user=root&password=&useUnicode=true&characterEncoding=gbk&autoReconnect=true&failOverReadOnly=false

在使用資料庫連接池的情況下,最好設定如下兩個參數:
autoReconnect=true&failOverReadOnly=false

需要注意的是,在xml設定檔中,url中的&符號需要轉義。比如在tomcat的server.xml中設定資料庫串連池時,mysql jdbc url範例如下:
jdbc:mysql://localhost:3306/test?user=root&password=&useUnicode=true&characterEncoding=gbk
&autoReconnect=true&failOverReadOnly=false

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.