jdbc的資料庫驅動類DriverManager.getConnection()引數
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.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資料庫(三個jar包:msbase.jar,mssqlserver.jar,msutil.jar)
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);
注意:一個jar包(sqljdbc4.jar)的時候,應該是這樣的,除掉“microsoft”
Class.forName("com.jdbc.sqlserver.SQLServerDriver").newInstance();
String url="jdbc:sqlserver://localhost:1433;DatabaseName=mydb";
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&useUnicod
e=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);
相關文章
- DBVisualizer 新增資料庫JDBC驅動資料庫JDBC
- 有這個資料庫的JDBC的驅動程式嗎?資料庫JDBC
- JDBC 連線資料庫的類JDBC資料庫
- pytest的資料驅動和引數傳遞
- 各種資料庫的jdbc驅動下載及連線方式資料庫JDBC
- 關於資料庫標識類引數資料庫
- Maven Central上所有Oracle JDBC資料庫驅動程式 - Kuassi MensahMavenOracleJDBC資料庫
- JDBC連線資料庫時,Oracle9i的連線引數配置JDBC資料庫Oracle
- Mybatis資料庫驅動MyBatis資料庫
- 各種資料庫的JDBC驅動下載及連線字串URL寫法資料庫JDBC字串
- 資料庫易混淆引數名以及引數檔案啟動資料庫到nomount狀態資料庫
- 不能用jdbc-odbc橋驅動來設定資料庫連線嗎?JDBC資料庫
- MySQL資料庫引數MySql資料庫
- MySQL JDBC驅動版本與資料庫版本的對應關係及注意事項MySqlJDBC資料庫
- 關於資料庫驅動資料庫
- Oracle終於在Maven Central釋出資料庫JDBC驅動程式 - Kuassi MensahOracleMaven資料庫JDBC
- JDBC第一篇【介紹JDBC、使用JDBC連線資料庫、簡單的工具類】JDBC資料庫
- JDBC、JDBC框架、資料庫事務、資料庫連線池JDBC框架資料庫
- 尋MYSQL 的JDBC驅動jar??MySqlJDBCJAR
- 調整資料庫引數資料庫
- PG jdbc 驅動的cursor 的使用JDBC
- 資料庫驅動的asp.net treeview資料庫ASP.NETView
- 大資料計劃驅動因素是種類而不是數量大資料
- 亞信安慧AntDB資料庫引領數字時代:數字驅動創新峰會主旨演講深度解析資料庫
- JDBC連線引數JDBC
- 09_驅動模組傳引數
- maven打包oracle jdbc驅動MavenOracleJDBC
- 檢視JDBC驅動版本JDBC
- 玩轉JDBC打造資料庫操作萬能工具類JDBCUtil,加入了高效的資料庫連線池,利用了引數繫結有效防止SQL隱碼攻擊JDBC資料庫SQL
- JDBC【事務、後設資料、改造JDBC工具類】JDBC
- 顯示資料庫所有引數資料庫
- Oracle 資料庫引數調整Oracle資料庫
- 3.1.2 啟動時指定資料庫初始化引數資料庫
- 恢復資料庫引數錯誤無法啟動資料庫
- Oracle資料庫系統中的引數Oracle資料庫
- Oracle資料庫中的系統引數Oracle資料庫
- JDBC連線資料庫JDBC資料庫
- JDBC資料庫訪問JDBC資料庫