用google搜一下,俯视皆是。
比如http://java.sun.com/j2se/1.4/docs/guide/jdbc/getstart/bridge.html
这里讲的是JDBC/ODBC桥。
// Load the JDBC-ODBC bridge driver
Class.forName(sun.jdbc.odbc.JdbcOdbcDriver) ;
// setup the properties
java.util.Properties prop = new java.util.Properties();
prop.put("charSet", "Big5");
prop.put("user", username);
prop.put("password", password);
// Connect to the database
con = DriverManager.getConnection(url, prop);
关于oracle的用google也能找到。比如:
http://javacenter.sun.co.jp/java-sample/javax.servlet/javax_servlet_05.html
public final static String url = "jdbc
racle:thin
hostname:1521:ORCL";
/** サーブレットおよびデータベースで扱う Charset */
public final static String charset = "EUCJIS";
// データベースへの接続確立
Properties prop = new Properties();
prop.put("user", user);
prop.put("password", password);
prop.put("charset", charset);
conn = DriverManager.getConnection(url, prop);