WEB开发网
开发学院数据库DB2 我与Db2 9新特性的零距离体验 阅读

我与Db2 9新特性的零距离体验

 2007-11-02 21:41:26 来源:WEB开发网   
核心提示: 插入操作 执行插入操作的类为insertxml(标准化越来越近了).java,该程序读取一个xml(标准化越来越近了)文件,我与Db2 9新特性的零距离体验(3),该xml(标准化越来越近了)文件包括对客户的描述信息,如:客户的地址信息、电话、传真等,所以该id不能相同,如连续插入多次,并将该xml(标准化越

   插入操作
   执行插入操作的类为insertxml(标准化越来越近了).java,该程序读取一个xml(标准化越来越近了)文件,该xml(标准化越来越近了)文件包括对客户的描述信息,如:客户的地址信息、电话、传真等。并将该xml(标准化越来越近了)文件的内容插入到CUSTOMER表中的xml(标准化越来越近了)类型的字段。
insertxml(标准化越来越近了).java其代码如下:
package xml(标准化越来越近了);import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStreamReader;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.SQLException;import java.util.Properties;public class Test2 ...{/**//*** @param args*//**//** private members **/private static Connection conn;static Properties db2ConnProps = new Properties();static Properties fileinputProps = new Properties();public static void main(String[] args) throws FileNotFoundException, IOException, SQLException ...{String db, userName, passwd, host, port;host=port=db=userName=passwd=null;/**//* load the contents of properties file in case of missing arguments*/db2ConnProps.load(new FileInputStream ("F:\\eclipse\\WorkPlace\\DB2xml(标准化越来越近了)\\src\\db2Conn.properties"));db=db2ConnProps.getProperty("databaseName");userName=db2ConnProps.getProperty("userName");passwd=db2ConnProps.getProperty("password");host=db2ConnProps.getProperty("hostName");port=db2ConnProps.getProperty("portNumber");/**//** connect to the database **/conn=db2Conn.get(db,userName,passwd,host,port);int id = 99;//由于id是主键,所以该id不能相同,如连续插入多次,可以修改id的值或者在数据库中将CUSTOMER表中的id字段设置为自动增长。 String fn = "F:\\eclipse\\WorkPlace\\DB2xml(标准化越来越近了)\\src\\Client8877.xml(标准化越来越近了)";String sqls ="insert into customer ( cid, info) values (?, ?)";File file = new File(fn);try ...{PreparedStatement insertStmt = conn.prepareStatement(sqls);conn.setAutoCommit(true);insertStmt.setInt(1, id);insertStmt.setBinaryStream(2, new FileInputStream(file), (int) file.length());if (insertStmt.executeUpdate() == 1) ...{System.out.println("insertBinStream:: No record inserted.");}insertStmt.executeUpdate();} catch (RuntimeException e) ...{// TODO Auto-generated catch block e.printStackTrace();} finally ...{conn.close();}}}

上一页  1 2 3 4 5 6  下一页

Tags:我与 Db 特性

编辑录入:coldstar [复制链接] [打 印]
赞助商链接