/*以下資料是網上查到的...

JDBC連接數據庫經驗集萃

一、連接各種數據庫方式速查表
下面羅列了各種數據庫使用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數據庫
Class.forName("com.ibm.db2.jdbc.app.DB2Driver ").newInstance();

Stringurl="jdbc:db2://localhost:5000/sample";
//sample為你的數據庫名
Stringuser="admin";

Stringpassword="";

Connectionconn=DriverManager.getConnection(url,user,password);


//3、Sql Server7.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://123.45.67.89:1533/myDB:INFORMIXSERVER=myserver;user=testuser;password=testpassword";

//myDB為數據庫名
Connectionconn=DriverManager.getConnection(url);


//6、MySQL數據庫
Class.forName("org.gjt.mm.mysql.Driver").newInstance();

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");

Stringurl="jdbc:odbc:Driver={MicroSoft Access Driver (*.mdb)};DBQ="+application.getRealPath("/Data/ReportDemo.mdb");

Connectionconn=DriverManager.getConnection(url,"","");

StatementstmtNew=conn.createStatement();