標籤:
MySQL、Oracle、Sql Server資料庫JDBC的串連方式MySQL: 先添加MySQL的jar包 String url="jdbc:mysql://localhost:3306/資料庫名"; //資料庫地址 String name="root"; //資料庫使用者名稱 String password="123456"; //資料庫使用者密碼 Class.forName("com.mysql.jdbc.Driver") ; //載入MySQL驅動 Connection conn = DriverManager.getConnection(url,name,password); //串連資料庫 Oracle: 添加Oracle的jar包 String url="jdbc:oracle:thin:@localhost:1521:資料庫名" ; //資料庫地址 String name="資料庫使用者名稱"; //資料庫使用者名稱 String password="資料庫使用者密碼"; //資料庫使用者密碼 Class.forName("oracle.jdbc.driver.OracleDriver"); //載入oracle驅動 Connection conn = DriverManager.getConnection(url,name,password); //串連資料庫 Sql Server: 添加Sql Server的jar包 String url="jdbc:sqlserver://localhost:1433;DatabaseName=資料庫名"; //資料庫地址 Sring name="資料庫使用者名稱"; //資料庫使用者名稱 String password="資料庫使用者密碼"; //資料庫使用者密碼 Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver"); //載入Sql Server驅動 Connection conn = DriverManager.getConnection(url,name,password); //串連資料庫
MySQL、Oracle、Sql Server資料庫JDBC的串連方式