爱心技术专栏专题

C-ODBC桥的字符集参数的例子。

摘录:java 来源:java 加入时间:2006年08月12日
摘要:
C-ODBC桥的字符集参数的例子。

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

转载:转载请保留本信息,本文来自
http://www.51dibs.com
/html/2006/article/info14/a_f7ec772b20bb8365.htm

C-ODBC桥的字符集参数的例子。

站点:爱心种子小博士 关键字:C-ODBC桥的字符集参数的例子。

   
C-ODBC桥的字符集参数的例子。
//这个例子,是从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());
}

}

客户服务中心信箱:[email protected] [email protected] 网站地图

声明

合作伙伴: