当前位置: 首页 > 图文教程 > 数据库 > MYSQL > Java连接各种数据库的实例

MYSQL
Sphinx+MySQL全文检索架构与安装
Mysql初学者:ERROR 1005错误处理
MySQL的root密码恢复的方法
注意MySQL数据库用户root密码为空
破解mysql的root密码的几种方法
修改MySQL的root密码(Linux环境)
MySQL5.0的my.cnf配置说明
Perl操作mysql数据库的方法
修改MySQL 5.0的默认100连接数
MYSQL中单一表超过4G的对策
MySQL 5.0全新的SQL句法sp_executesql
MySQL中Now()函数的详细介绍
ASP程序直接连接MYSQL数据库
mysql 1046错误解决实例
MYSQL中ERROR 1005信息处理
MYSQL的优化之关于limit优化
mysql insert详细讲解
mysql服务无法启动1067错误解决
mysql INSERT command denied to user
linux下MYSQL常见两个错误的解决办法

MYSQL 中的 Java连接各种数据库的实例


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-10-17   浏览: 69 ::
收藏到网摘: n/a

1、Oracle8/8i/9i数据库(thin模式)

2、DB2数据库

以下为引用的内容:
Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance();
String url="jdbc:db2://localhost:5000/sample";
//sample为你的数据库名
String user="admin";
String password="";
Connection conn= DriverManager.getConnection(url,user,password);

3、SQL Server7.0/2000数据库

以下为引用的内容:
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance();
String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=mydb";
//mydb为数据库
String user="sa";
String password="";
Connection conn= DriverManager.getConnection(url,user,password);

4、Sybase数据库

以下为引用的内容:
Class.forName("com.sybase.jdbc.SybDriver").newInstance();
String url =" jdbc:sybase:Tds:localhost:5007/myDB";
//myDB为你的数据库名
Properties sysProps = System.getProperties();
SysProps.put("user","userid");
SysProps.put("password","user_password");
Connection conn= DriverManager.getConnection(url, SysProps);

5、Informix数据库

以下为引用的内容:
Class.forName("com.informix.jdbc.IfxDriver").newInstance();
String url =
"jdbc:informix-sqli://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver;
user=testuser;password=testpassword";
//myDB为数据库名
Connection conn= DriverManager.getConnection(url);

6、MySQL数据库

以下为引用的内容:
Class.forName("org.gjt.mm.MySQL.Driver").newInstance();
String url ="jdbc:MySQL://localhost/myDB?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"
//myDB为数据库名
Connection conn= DriverManager.getConnection(url);

7、PostgreSQL数据库

以下为引用的内容:

Class.forName("org.postgresql.Driver").newInstance();
String url ="jdbc:postgresql://localhost/myDB"
//myDB为数据库名
String user="myuser";
String password="mypassword";
Connection conn= DriverManager.getConnection(url,user,password);