您好,登錄后才能下訂單哦!
今天就跟大家聊聊有關(guān)J2EE技術(shù)中JDBC連接數(shù)據(jù)庫(kù)的各種寫法分別是什么,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結(jié)了以下內(nèi)容,希望大家根據(jù)這篇文章可以有所收獲。
以下是JDBC連接各種數(shù)據(jù)庫(kù)的寫法,獻(xiàn)給Java初學(xué)者,提一點(diǎn)建議,記得導(dǎo)入對(duì)應(yīng)的驅(qū)動(dòng)jar包哦。
1、Oracle8/8i/9i數(shù)據(jù)庫(kù)(thin模式)
Class.forName("oracle.jdbc.driver.OracleDriver").newInstance(); String url="jdbc:oracle:thin:@localhost:1521:orcl"; //orcl為數(shù)據(jù)庫(kù)的SID String user="test"; String password="test"; Connection conn= DriverManager.getConnection(url,user,password);
2、DB2數(shù)據(jù)庫(kù)
Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance(); String url="jdbc:db2://localhost:5000/sample"; //sample為你的數(shù)據(jù)庫(kù)名 String user="admin"; String password=""; Connection conn= DriverManager.getConnection(url,user,password);
3、Sql Server7.0/2000數(shù)據(jù)庫(kù)
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance(); String url="jdbc:microsoft:sqlserver://localhost:1433;DatabaseName=mydb"; //mydb為數(shù)據(jù)庫(kù) String user="sa"; String password=""; Connection conn= DriverManager.getConnection(url,user,password);
4、Sybase數(shù)據(jù)庫(kù)
Class.forName("com.sybase.jdbc.SybDriver").newInstance(); String url =" jdbc:sybase:Tds:localhost:5007/myDB"; //myDB為你的數(shù)據(jù)庫(kù)名 Properties sysProps = System.getProperties(); SysProps.put("user","userid"); SysProps.put("password","user_password"); Connection conn= DriverManager.getConnection(url, SysProps);
5、Informix數(shù)據(jù)庫(kù)
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為數(shù)據(jù)庫(kù)名 Connection conn= DriverManager.getConnection(url);
6、MySQL數(shù)據(jù)庫(kù)
Class.forName("org.gjt.mm.mysql.Driver").newInstance(); String url ="jdbc:mysql://localhost/myDB?user=soft&password=soft1234&useUnicode=true&characterEncoding=8859_1" //myDB為數(shù)據(jù)庫(kù)名 Connection conn= DriverManager.getConnection(url);
或
Class.forName("com.mysql.jdbc.Driver"); String url="jdbc:mysql://localhost/myDB? ser=root&password=system"; conn = DriverManager.getConnection(url);
7、PostgreSQL數(shù)據(jù)庫(kù)
Class.forName("org.postgresql.Driver").newInstance(); String url ="jdbc:postgresql://localhost/myDB" //myDB為數(shù)據(jù)庫(kù)名 String user="myuser"; String password="mypassword"; Connection conn= DriverManager.getConnection(url,user,password);
補(bǔ)充:Sql Server2005數(shù)據(jù)庫(kù)
Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver").newInstance(); String url="jdbc:sqlserver://localhost:1433;DatabaseName=mydb"; //mydb為數(shù)據(jù)庫(kù) String user="sa"; String password=""; Connection conn= DriverManager.getConnection(url,user,password);
和sql2000 的連接url有點(diǎn)區(qū)別。JDBC連接數(shù)據(jù)庫(kù)的方法基本就是上面這些了。
看完上述內(nèi)容,你們對(duì)J2EE技術(shù)中JDBC連接數(shù)據(jù)庫(kù)的各種寫法分別是什么有進(jìn)一步的了解嗎?如果還想了解更多知識(shí)或者相關(guān)內(nèi)容,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝大家的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。