首页 > 学院 > 开发设计 > 正文

一个JDBC-ODBC桥的字符集参数的例子

2019-11-18 15:19:47
字体:
来源:转载
供稿:网友

  作者:sonymusic
email: sonymusic@china.com
//这个例子,是从SUN的站点上找来的。当时也找了好久啊。呵呵!
// accepts sql statments thru command line
import java.sql.*;
import java.util.*;
public class test {
public static void main(String args[]){

try
{

Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
PRoperties prop = new Properties();
prop.put("user", "");
prop.put("passWord","");
prop.put("charSet","gb2312");

Connection conn=DriverManager.getConnection("jdbc:odbc:chinese",prop);
Statement stmt=conn.createStatement();
stmt.execute(args[0]);

}

catch(ClassNotFoundException e)
{
// JOptionPane.showMessageDialog(null,"Unable To Load The Driver Class","Login Message", JOptionPane.ERROR_MESSAGE);

}
catch(SQLException e)
{
e.printStackTrace();
System.out.println(e.getErrorCode());
}

}
}

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表