jdbc連線各種資料庫方式列表

2021-08-22 03:49:22 字數 2262 閱讀 9158

下面羅列了各種資料庫使用jdbc連線的方式,可以作為乙個手冊使用。

1、oracle8/8i/9i資料庫(thin模式)

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

stringurl="jdbc:oracle:thin:@localhost:1521:orcl";//orcl為資料庫的sid

stringuser="test";

stringpassword="test";

connectionconn=drivermanager.getconnection(url,user,password);

2、db2資料庫

stringurl="jdbc:db2://localhost:5000/sample";//sample為你的資料庫名

stringuser="admin";

stringpassword="";

connectionconn=drivermanager.getconnection(url,user,password);

3、sqlserver7.0/2000資料庫

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

stringurl="jdbc:microsoft:sqlserver://localhost:1433;databasename=mydb";

//mydb為資料庫

stringuser="sa";

stringpassword="";

connectionconn=drivermanager.getconnection(url,user,password);

4、sybase資料庫

class.forname("com.sybase.jdbc.sybdriver").newinstance();

stringurl="jdbc:sybase:tds:localhost:5007/mydb";//mydb為你的資料庫名

propertiessysprops=system.getproperties();

sysprops.put("user","userid");

sysprops.put("password","user_password");

connectionconn=drivermanager.getconnection(url,sysprops);

5、informix資料庫

class.forname("com.informix.jdbc.ifxdriver").newinstance();

stringurl="jdbc:informix-sqli:

user=testuser;password=testpassword";//mydb為資料庫名

connectionconn=drivermanager.getconnection(url);

6、mysql資料庫

class.forname("org.gjt.mm.mysql.driver").newinstance();//或者class.forname("com.mysql.jdbc.driver");

stringurl="jdbc:mysql://localhost/mydb?user=soft&password=soft1234&useunicode=true&characterencoding=8859_1"

//mydb為資料庫名

connectionconn=drivermanager.getconnection(url);

7、postgresql資料庫

class.forname("org.postgresql.driver").newinstance();

stringurl="jdbc:postgresql://localhost/mydb"//mydb為資料庫名

stringuser="myuser";

stringpassword="mypassword";

connectionconn=drivermanager.getconnection(url,user,password);

8、access資料庫直連用odbc的

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

connectionconn=drivermanager.getconnection(url,"","");

statementstmtnew=conn.createstatement();

JDBC連線各種資料庫方式列表

關鍵字 資料庫 下面羅列了各種資料庫使用jdbc連線的方式,可以作為乙個手冊使用。1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle th...

jdbc連線各種資料庫方式列表

下面羅列了各種資料庫使用jdbc連線的方式,可以作為乙個手冊使用。1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin local...

JDBC連線各種資料庫方式列表

下面羅列了各種資料庫使用jdbc連線的方式,可以作為乙個手冊使用。1 oracle8 8i 9i資料庫 thin模式 class.forname oracle.jdbc.driver.oracledriver newinstance string url jdbc oracle thin local...