码迷,mamicode.com
首页 > 数据库 > 详细

mysql的JDBC接口编程

时间:2014-12-26 21:45:42      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:mysql   jdbc   编程   编码   

mysql的JDBC接口驱动包的版本和mysql的版本间的关系可以在官网上查到,具体例子见下面,里面没有和JDBC版本匹配的相关描述。
http://dev.mysql.com/doc/relnotes/connector-j/en/news-5-1-34.html
Version 5.1.34 is a maintenance release of the production 5.1 branch. It is suitable for use with MySQL server versions 5.5, and 5.6.

大概有如下的对应关系,具体版本需要具体查一下
    Connector/J 5.1 支持Mysql 4.1、Mysql 5.0、Mysql 5.1、Mysql 6.0 alpha这些版本。
    Connector/J 5.0 支持MySQL 4.1、MySQL 5.0 servers、distributed transaction (XA)。
    Connector/J 3.1 支持MySQL 4.1、MySQL 5.0 servers、MySQL 5.0 except distributed transaction (XA) support。
    Connector/J 3.0 支持MySQL 3.x or MySQL 4.1。


下面是jdbc接口连接mysql的例子,连接串里指定了字符编码
try{
 Class.forName(com.mysql.jdbc.Driver);
 System.out.println(Success loading Mysql Driver!);
  String url ="jdbc:mysql://localhost/dbName?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"
  Connection conn= DriverManager.getConnection(url);
}catch(Exception e)
{
 System.out.println(Error jdbc to mysql!);
 e.printStackTrace();

}



-----------------

转载请著明出处:
blog.csdn.net/beiigang

mysql的JDBC接口编程

标签:mysql   jdbc   编程   编码   

原文地址:http://blog.csdn.net/beiigang/article/details/42176565

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!