常見連線資料庫的URL幾種方式
下面羅列了各種資料庫使用JDBC連線的方式,方便日後開發使用。 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);
注意:Oracle的URL有兩種寫法:
(1)jdbc:oracle:thin:@localhost:1521:databaseName 常用操作sql的工具:sqlDeveloper.exe,還可以用其他資料庫,如mysql等
(2)jdbc:oracle:oci:@localhost:1521:databaseName 用來操作SQL的工具只能用:PL/SQL Developer;資料庫叢集時候常用此連線,比上面那個多點功能,效能好點。
2、DB2資料庫 Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance(); String url="jdbc:db2://localhost:5000/sample";user=testuser;password=testpassword"; //myDB為資料庫名 Connection conn= DriverManager.getConnection(url); 6、MySQL資料庫 Class.forName("org.gjt.mm.mysql.Driver").newInstance();&Class.forName("com.mysql.jdbc.Driver");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); 8、access資料庫直連用ODBC的Class.forName("sun.jdbc.odbc.JdbcOdbcDriver") ;String url="jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};DBQ="+application.getRealPath("/Data/ReportDemo.mdb");Connection conn = DriverManager.getConnection(url,"","");Statement stmtNew=conn.createStatement() ;