免费注册 查看新帖 |

Chinaunix

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

JAVA中如何读写DB2 CLOB类型的数据 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-11-23 22:52 |只看该作者 |倒序浏览
有一个数据表,例如表名为ARTICLE,其中有一字段CONTENT,字段类型CLOB,用于存储文章正文(属长字符串)。请问如何在JAVA中编写读或写这个CLOB类型的数据。

我们使用了如下SQL代码向数据库中写入数据,但是出错。是不是LOB类型的数据都不能直接通过SQL操作吗?

使用的SQL代码如下:

insert into ARTICLE(NEWSID,CONTENT) values(" + rs.getInt("newsid" + ",'" + rs.getString("content" + "')

论坛徽章:
0
2 [报告]
发表于 2004-11-27 21:44 |只看该作者

JAVA中如何读写DB2 CLOB类型的数据

对于lob类型的使用update来进行操作

论坛徽章:
0
3 [报告]
发表于 2004-11-27 22:57 |只看该作者

JAVA中如何读写DB2 CLOB类型的数据

参考下面的代码:


/*
(c) Copyright IBM Corp. 2000  All rights reserved.                 
                                                                  
This sample program is owned by International Business Machines   
Corporation or one of its subsidiaries ("IBM" and is copyrighted  
and licensed, not sold.                                            
                                                                  
You may copy, modify, and distribute this sample program in any   
form without payment to IBM,  for any purpose including developing,
using, marketing or distributing programs that include or are      
derivative works of the sample program.                           
                                                                  
The sample program is provided to you on an "AS IS" basis, without
warranty of any kind.  IBM HEREBY  EXPRESSLY DISCLAIMS ALL         
WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED  
TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A   
PARTICULAR PURPOSE.                                                
                                                                  
Some jurisdictions do not allow for the exclusion or limitation of
implied warranties, so the above limitations or exclusions may not
apply to you.  IBM shall not be liable for any damages you suffer  
as a result of using, modifying or distributing the sample program
or its derivatives.                                                
                                                                  
Each copy of any portion of this sample program or any derivative  
work,  must i

*/

import java.lang.*;
import java.sql.*;
import java.io.*;


/**
* Sample Code to insert a blob data type into the database. WriteBlob class accepts 6 arguments from the user during
* runtime. These are the databasename, user id, password, tablename, columnname and picture filename. It inserts a .jpg
* picture file from the current directory into the column of BLOB data type as specified by the user.
* @author  Suita Gupta
* @version 0.1 (02/04/2002 11:10:00 AM)
* @see         java.sql.*
* @since   JDK 1.3
*/


public class WriteBlob {
       
private static PreparedStatement ps;

/**
* Method to establish and return a connection object. This connection object is used to execute the prepared statements to
* insert the BLOB into the database.
*
* @param         argv[] - User's command line input for databasename, user id, password, tablename, columnname, picture filename
* @return         con - Connection object
*
*/
       
        public static Connection getConnect(String argv[])
        {
                Connection con = null;
                String url="";
                String dbname = "";
                String user_id = "";
                String pwd = "";
                               
                try
                {       
                        // register the driver with DriverManager
                         // The newInstance() call is needed for the sample to work with
                         // JDK 1.1.1 on OS/2, where the Class.forName() method does not
                         // run the static initializer. For other JDKs, the newInstance
                         // call can be omitted.
                        Class.forName("COM.ibm.db2.jdbc.app.DB2Driver".newInstance();

                        if (argv.length == 6){
                                //assign values from command line input to dbname, user_id, pwd variables
                                dbname = argv[0];
                                user_id = argv[1];
                                pwd = argv[2];
                                url = "jdbc:db2:" + dbname;
                                con = DriverManager.getConnection(url, user_id, pwd);
                           }
                         else{
                            System.out.println("\nUsage: java WriteBlob [databasename user id password tablename columnname picture.jpg]\n";
                            System.exit(0);
                         }
               
                        System.out.println ("You are connected to " + dbname);
                } // end try block

                catch (Exception e){
                        e.printStackTrace();
                } // end catch block

                return con;

        } // end of getConnect()

/**
* Method to insert the picture file from current directory to the table mentioned by user. A point to note is that the
* setBinaryStream() does not have a limit unlike the setBytes() which has a limit of 33124 bytes. Both however are valid methods
* for retrieving a stream to write to the BLOB value.
* @param         argv[] user's command line input for databasename, user id, password, tablename, columnname, picture filename
* @param     con Connection object
*
*/

      public static void writePicture(Connection con, String argv[]){

                //Assuming that the first column of the table is of BLOB data type
                String insert_picture = "insert into " + argv[3] + " (" + argv[4] + "" + " VALUES(?)";

                try{

                        //create a new file object for the picture
                           File fil =new File(argv[5]);
                       
                        //Creating byte[] data array to store the picture file
                        byte[] arrBytes = new byte[ ((new Long(fil.length())).intValue())];

                        //Initialising PreparedStatement ps with query       
                        ps =con.prepareStatement(insert_picture);

                        //Using ps.setBinaryStream() instead of ps.setBytes to retrieve source for BLOB value to be inserted into the database
                        //setBinaryStream() accepts an inputstream and the length, once the statement is executed the length value
                  //is read and inserted into the column.
                        ps.setBinaryStream(1, new ByteArrayInputStream(arrBytes), Integer.MAX_VALUE);

                        //Execute the prepared statement
                        ps.execute();
                                               
                }//end of try

                catch(Exception ee){
                        ee.printStackTrace();       
                }//end of catch
               
                System.out.println("Successfully inserted picture.jpg into " + argv[0]+ "." + argv[3]);

        }//end of writePicture()

/**
* Main method which invokes the getConnect() and passes user's command line input. A connection object is returned from the
* getConnect() and this is passed along with argv[] to the writePicture().  Connection is then closed once the BLOB has
* successfully been inserted into the table.
* @param         argv[] user's command line input for databasename, user id, password, tablename,columnname, picture filename
*
*/

        public static void main(String[] argv){

                try{
                        //Establish connection
                        Connection conn = getConnect(argv);
                       
                        //invoke writePicture method and pass connection object and command line input for tablename and columnname values
                        writePicture(conn,argv);

                        // Close connection object
                        conn.close();

                } //end try block

                catch (Exception ex)
                {
                        ex.printStackTrace();
                } //end catch block

        }//end of main()

}//end of WriteBlob class
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP