迷你5207专属论坛

注册

 

发新话题 回复该主题

[JAVA] JAVA数据库连接的代码,备案,以后不用百度了:) [复制链接]

发表者
JAVA连接其他数据库的关键代码 1、Oracle8/8i/9i数据库(thin模式) Class.forName("oracle.jdbc.driver.OracleDriver").newInstance(); 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.net.DB2Driver ").newInstance(); String url="jdbc:db2://" + dbServerName + ":" + dbServerPort + "/" + dbName   //dbServerPort默认为6789 String user="***"; 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);
本主题由 管理员 5207 于 2007-12-2 11:19:36 执行 主题分类 操作
分享 转发
当把一切看淡,一切变得那么自然
TOP
沙发

Ethen

http://4768ea9f33afa2fd0f0f7dfce6d98c6f-t.giofpv.info <a href="http://4768ea9f33afa2fd0f0f7dfce6d98c6f-h.giofpv.info">4768ea9f33afa2fd0f0f7dfce6d98c6f</a> [url]http://4768ea9f33afa2fd0f0f7dfce6d98c6f-b1.giofpv.info[/url] [url=http://4768ea9f33afa2fd0f0f7dfce6d98c6f-b2.giofpv.info]4768ea9f33afa2fd0f0f7dfce6d98c6f[/url] [u]http://4768ea9f33afa2fd0f0f7dfce6d98c6f-b3.giofpv.info[/u] 9347c264dad933bf0d3d8439e337d61b
TOP
发新话题 回复该主题