連線各種資料庫

2021-08-29 10:54:44 字數 1868 閱讀 9845

[code]

<%

//鏈結sql資料庫

class.forname("com.microsoft.jdbc.sqlserver.sqlserverdriver");

string url="jdbc:microsoft:sqlserver:";

string user="oa";

string password="oadb";

connection conn= drivermanager.getconnection (url,user,password);

%>

<%

//鏈結sql2005資料庫

class.forname("com.microsoft.sqlserver.jdbc.sqlserverdriver");

string url="jdbc:sqlserver://localhost:1433;databasename=teach";

string user="oa";

string password="oadb";

connection conn= drivermanager.getconnection (url,user,password);

%>

<%

//鏈結oracle資料庫

class.forname("oracle.jdbc.driver.oracledriver").newinstance();

string url="jdbc:oracle:thin:@localhost:1521:oradb";

//orcl為你的資料庫的sid

string user="system";

string password="manager";

connection conn= drivermanager.getconnection (url,user,password);

%>

<%

//鏈結mysql資料庫

class.forname("org.gjt.mm.mysql.driver").newinstance();

string url ="jdbc: mysql://localhost/softforum?user=soft&password=soft1234&useunicode=true&characterencoding=8859_1"

//testdb為你的資料庫名

connection conn= drivermanager.getconnection(url);

%>

<%

//鏈結access資料庫

string sourceurl =

"jdbc:odbc:driver=;dbq=f:\\wookroot\\jbroot\\souyue\\websy\\data\\suoyue.mdb"; //database是access mdb檔案的主檔名

class.forname("sun.jdbc.odbc.jdbcodbcdriver");

connection conn = drivermanager.getconnection(sourceurl);

%>

<%

//所有資料庫連線採用odbc的寫法:[配置資料來源]

class.forname("sun.jdbc.odbc.jdbcodbcdriver").newinstance();

string url = "jdbc:odbc:xuewei";

string user = "";

string password = "";

connction conn= drivermanager.getconnection(url,user,password);

%>

[/code]

各種資料庫連線

mysql string driver com.mysql.jdbc.driver 驅動程式 string url jdbc mysql localhost 3306 db name 連線的url,db name為資料庫名 string username username 使用者名稱 string ...

各種資料庫連線

mysql string driver org.gjt.mm.mysql.driver 驅動程式 string url jdbc mysql localhost 3306 db name 連線的url,db name為資料庫名 string username username 使用者名稱 strin...

各種資料庫連線

連線mysql class.forname org.gjt.mm.mysql.driver newinstance 或者class.forname com.mysql.jdbc.driver string url jdbc mysql localhost mydb?user soft passwor...