免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
123下一页
最近访问板块 发新帖
查看: 15288 | 回复: 21
打印 上一主题 下一主题

原创:用JDBC访问AS/400数据- 配置与JDBC编程要点 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-03-18 15:35 |只看该作者 |倒序浏览
发了半天了,只见鱼过,不见冒泡,正在疑惑各位大大是否对此题目不感兴趣呢?luoshengzh大大的鼓励来了,谢谢luoshengzh。余文一并发出,不喜欢的就拍块砖吧,潜水的不要。

四.配置JDBC
4.1 在配置JDBC之前,请确保工作站上的JDK已正确配置,且可以下常使用。

4.2 找到JDBC软件包
AS/400 Toolbox for Java安装后,用户访问AS/400数据的JDBC软件包即生成在IFS(集成文件系统)中,其路径是:/QIBM/ProdData/HTTP/Public/jt400/lib/ jt400.zip 。用户可以使用Client Access 或NetServer 将此路径MAP成一个本地磁盘驱动器,也可索性用FTP将其jt400.zip下载下来使用。

4.3 设置环境路径(以jt400.zip在I:\jt400\ 目录为例)
4.3.1 Windows98 & 95环境,在AUTOEXEC.BAT中增加一行:
set classpath = %CLASSPATH%;I:\jt400\jt400.zip

[此有一图,谁能教我如何加图?谢谢]



4.3.2        WindowsNT环境
4.3.2.1        双击[我的电脑]图标
4.3.2.2        双击[我的电脑]文件夹中的[控制面板]图标
4.3.2.3        在[控制面板]文件夹中双击[系统]图标
4.3.2.4        选择[环境变量]面板
4.3.2.5        增加CLASSPATH变量,再在下一行输入变量值,如下图:

[此又有一图,谁能教我如何加图?谢谢]




五.JDBC编程要点
5.1 注册JDBC驱动器程序
                访问AS/400数据的JDBC驱动器程序叫com.ibm.as400.access.AS400JDBCDriver, 在JDBC编程中要建立程序与数据库的连接,首先得注册这个JDBC驱动器,请使用如下语句:
java.sql.DriverManager.registerDriver (new com.ibm.as400.access.AS400JDBCDriver ());

5.2 建立数据库连接
在JDBC驱动器注册之后,第二步要做的就是建立数据库连接。可使用类似于如下语句的语句,更多的连接方式请见 附录A:
Connection c = DriverManager.getConnection(
                        "jdbc:as400://mySystem;naming=sql;errors=full",
                        "auser", "apassword";

5.3 使用SQL语句执行SQL操作
5.3.1 使用Statement接口
Statement对象可用来执行一个简单的SQL语句,使用一个Connection对象创建一个Statement对象。如:c.createStatement()。具体使用如下例所示:
             // Connect to the AS/400.
             Connection c = DriverManager.getConnection("jdbc:as400://mySystem";
             // Create a Statement object.
             Statement s = c.createStatement();
             // Run an SQL statement that creates a table in the database.
             s.executeUpdate("CREATE TABLE MYLIBRARY.MYTABLE (NAME VARCHAR(20), ID INTEGER)";
             // Run an SQL statement that inserts a record into the table.
             s.executeUpdate("INSERT INTO MYLIBRARY.MYTABLE (NAME, ID) VALUES ('DAVE', 123)";
             // Run an SQL statement that inserts a record into the table.
             s.executeUpdate("INSERT INTO MYLIBRARY.MYTABLE (NAME, ID) VALUES ('CINDY', 456)";
             // Run an SQL query on the table.
             ResultSet rs = s.executeQuery("SELECT * FROM MYLIBRARY.MYTABLE";
             // Close the Statement and the Connection.
             s.close();
      c.close();

5.3.2 使用PreparedStatement接口
PreparedStatement接口提供了一种灵活的SQL语句的执行方式。它可以在欲运行的SQL语句中预留下参数变量,在真正运行时将不用的参数调用则可获得不同的结果,这个接口在对数据进行批量同类执行时非常有用。请参见下面的例子:
          // Connect to the AS/400.
  Connection c = DriverManager.getConnection("jdbc:as400://mySystem";
      // Create the PreparedStatement object. It precompiles the specified SQL
  // statement. The question marks indicate where parameters must be set before
  // the statement is run.
PreparedStatement ps = c.prepareStatement("INSERT INTO MYLIBRARY.MYTABLE (NAME, ID) VALUES (?, ?)";
          // Set parameters and run the statement.
               ps.setString(1, "JOSH";
      ps.setInt(2, 789);
      ps.executeUpdate();
          // Set parameters and run the statement again.
      ps.setString(1, "DAVE";
               ps.setInt(2, 456);
      ps.executeUpdate();
          // Close PreparedStatement and the Connection.
      ps.close();
               c.close();

5.3.3 使用CallableStatement接口
通过CallableStatement接口,可以运行SQL存储过程(stored procedures)。存储过程是随数据库保存的小程序。请参见下面的例子

       // Connect to the AS/400.
       Connection c = DriverManager.getConnection("jdbc:as400://mySystem");
       // Create the CallableStatement object. It precompiles the specified call to a stored
       // procedure. The question marks indicate where input parameters must be set and
   // where output parameters can be retrieved. The first two parameters are
       // input parameters, and the third parameter is an output parameter.
       CallableStatement cs = c.prepareCall("CALL MYLIBRARY.ADD (?, ?, ?)");
       // Set input parameters.
       cs.setInt (1, 123);
       cs.setInt (2, 234);
       // Register the type of the output parameter.
       cs.registerOutParameter (3, Types.INTEGER);
       // Run the stored procedure.
       cs.execute ();
       // Get the value of the output parameter.
       int sum = cs.getInt (3);
       // Close the CallableStatement and the Connection.
       cs.close();
       c.close();

5.3.4 使用ResultSet接口
使用ResultSet接口可以得到SQL语句所获得的数据结果集,并且可以使用游标 (Cursor)来方便地浏览数据结果集。请参见以下的例子:

       // Connect to the AS/400.
       Connection c = DriverManager.getConnection("jdbc:as400://mySystem");
       // Create a Statement object.  Set the result set
               // type to scroll insensitive.
       Statement s = c.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,
                                     ResultSet.CONCUR_READ_ONLY);
       // Run a query. The result is placed in a ResultSet object.
       ResultSet rs = s.executeQuery ("SELECT NAME,ID FROM
           MYLIBRARY.MYTABLE");
       // Iterate through the rows of the ResultSet.Go to the next row if the user selected 'N'
   // or previous record if the user selected 'P'.  Assume that getUserSelection() is
   // defined elsewhere.
       boolean done = false;
       while (! done)
       {
                   switch (getUserSelection ())
                   {
                   case 'N':
                         rs.next ();
                         break;
                   case 'P':
                         rs.previous ();
                         break;
                   default:
                         done = true;
                    }
        // Get the values from the ResultSet. The first value is a string, and
        // the second value is an integer.
        String name = rs.getString("NAME");
        int id = rs.getInt("ID");
        System.out.println("Name = " + name);
        System.out.println("ID = " + id);
        }
        // Close the Statement and the Connection.
        s.close();
        c.close();


附录A : 使用JDBC 驱动器连接AS/400 数据库

你可以使用DriverManager.getConnection() 方法来连接AS/400数据库. DriverManager.getConnection() 使用一个URL字符串作为参数. JDBC驱动器管理器将为尝试连接在URL字符串中所指的数据库:
   
"jdbc:as400://systemName/defaultSchema;listOfProperties"
以下是一些连接方式的例子

例一:URL不给出系统名。这种情况需要用户在使用时给出欲连接的系统名:
      "jdbc:as400:"

         
例二:URL只给出系统名
      Connection c  = DriverManager.getConnection("jdbc:as400://mySystem");

         
例三:URL给出系统名,且给出缺省的Schema
      Connection c2 = DriverManager.getConnection("jdbc:as400://mySys2/mySchema");

例四:连接AS/400 数据库,且使用java.util.Properties 定义更多的JDBC 连接属性。
     // Create a properties object.
     Properties p = new Properties();
     // Set the properties for the connection.
     p.put("naming", "sql");
     p.put("errors", "full");
     // Connect using the properties object.
     Connection c = DriverManager.getConnection("jdbc:as400://mySystem",p);

例五:连接AS/400数据库,并且给出URL的相关属性.
     // Connect using properties. The properties are set on the URL
     // instead of through a properties object.
     Connection c = DriverManager.getConnection( "jdbc:as400://mySystem;naming=sql;errors=full");

例六:连接AS/400数据库且给出用户名与口令
     // Connect using properties on the URL and specifying a user ID and password
     Connection c = DriverManager.getConnection(
                        "jdbc:as400://mySystem;naming=sql;errors=full",
                        "auser", "apassword");

例七:关闭数据库连接
使用close() 方法将连接关闭,如 c.close();

论坛徽章:
0
2 [报告]
发表于 2004-03-18 17:41 |只看该作者

原创:用JDBC访问AS/400数据- 配置与JDBC编程要点

不错~~ 很棒~ 可惜看不懂~~ 没用过JDBC。。。。。。。

论坛徽章:
0
3 [报告]
发表于 2004-03-19 09:34 |只看该作者

原创:用JDBC访问AS/400数据- 配置与JDBC编程要点

我是专门搜索你写的贴子了!写的很好!

论坛徽章:
0
4 [报告]
发表于 2004-03-19 13:35 |只看该作者

原创:用JDBC访问AS/400数据- 配置与JDBC编程要点

加点注解
关于注册Driver部分
5.1 注册JDBC驱动器程序
访问AS/400数据的JDBC驱动器程序叫com.ibm.as400.access.AS400JDBCDriver, 在JDBC编程中要建立程序与数据库的连接,首先得注册这个JDBC驱动器,请使用如下语句:
java.sql.DriverManager.registerDriver (new com.ibm.as400.access.AS400JDBCDriver ());


通常,由于Driver类不一定已经存在于ClassPath里(可以在运行时才加上)
同时,Drvier类在初始化时会自动注册Driver
所以,这一段通常是这么写的

  1. try{
  2. Class.forName("com.ibm.as400.access.AS400JDBCDriver");
  3. }
  4. catch(ClassNotFoundException e){
  5. }


复制代码

也可以达到同样效果,而且可以把DrvierName放在Properties里,随时改动Driver而不需重新改代码,如:


  1. String getProperties(String name){
  2. .....//获取配置的属性
  3. }

  4. ...
  5. String driverClass = getProperties("driver");
  6. String user=getProperties("user");
  7. String pass=getProperties("pass");
  8. String url=getProperties("url");

  9. try{
  10. Class.forName(driverClass);
  11. }
  12. catch(ClassNotFoundException e){
  13. }
  14. Connection c = DriverManager.getConnection( ...);

复制代码

论坛徽章:
0
5 [报告]
发表于 2004-03-19 19:24 |只看该作者

原创:用JDBC访问AS/400数据- 配置与JDBC编程要点

谢谢 rollingpig 大大补充。

论坛徽章:
0
6 [报告]
发表于 2004-03-20 10:19 |只看该作者

原创:用JDBC访问AS/400数据- 配置与JDBC编程要点

請問如何才能得到 COLHDG 的內容?
andrewleading_h 该用户已被删除
7 [报告]
发表于 2004-03-22 14:36 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
8 [报告]
发表于 2004-03-23 11:43 |只看该作者

原创:用JDBC访问AS/400数据- 配置与JDBC编程要点

不错~!

论坛徽章:
0
9 [报告]
发表于 2004-06-12 11:53 |只看该作者

原创:用JDBC访问AS/400数据- 配置与JDBC编程要点

请问AS/400是不是必须安装AS/400 Toolbox for Java,如果我拿到jdbc驱动包
服务器上没有安装AS/400 Toolbox for Java,可不可以连接上

论坛徽章:
0
10 [报告]
发表于 2004-06-12 22:39 |只看该作者

原创:用JDBC访问AS/400数据- 配置与JDBC编程要点

原帖由 "rufujian" 发表:
请问AS/400是不是必须安装AS/400 Toolbox for Java,如果我拿到jdbc驱动包
服务器上没有安装AS/400 Toolbox for Java,可不可以连接上

你可以试试看
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP