jdbc url

下面罗列了各种数据库使用JDBC连接数据库的方式,可以作为一个手册使用。

1、Oracle8/8i/9i数据库(thin模式)
Class.forName("oracle.jdbc.driver.OracleDriver");
String url="jdbc:oracle:thin:@localhost :1521:orcl"; //orcl为数据库的SID
String user="test";
String password="test";
Connection conn= DriverManager.getConnection(url,user,password);

2、DB2数据库
Class.forName("com.ibm.db2.jdbc.app.DB2Driver ")
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("net.sourceforge.jtds.jdbc.Driver")
String url="jdbc:jtds:sqlserver://localhost:1433;databaseName=jspdev";
//jspdev为数据库
String user="sa";
String password="";
Connection conn= DriverManager.getConnection(url,user,password);

4、Informix数据库
Class.forName("com.informix.jdbc.IfxDriver")
String url =
"jdbc:informix-sqli://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver;
user=testuser;password=testpassword"; //myDB为数据库名
Connection conn= DriverManager.getConnection(url);

5、MySQL数据库
Class.forName("org.gjt.mm.mysql.Driver")
String url ="jdbc:mysql://localhost/myDB?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1"
//myDB为数据库名
Connection conn= DriverManager.getConnection(url);

你可能感兴趣的:(jdbc,url)