`
xuyongping
  • 浏览: 123969 次
  • 性别: Icon_minigender_1
  • 来自: 部落格
社区版块
存档分类
最新评论

bolb字段的写入

 
阅读更多
boolean flag = true;
            while (flag) {
                stmt
                        .executeQuery("delete from WORKBOOK_REPOSITORY where NAME = '"
                                + name + "' and diff_id = 'a0'" );
               
                stmt
                        .executeQuery("insert into WORKBOOK_REPOSITORY(name,diff_id,content,Update_Time) values('"
                                + name
                                + "','a0',empty_blob(),"
                                + "SYSDATE"
                                + ")");

                rset = stmt
                        .executeQuery("select CONTENT from WORKBOOK_REPOSITORY where NAME = '"
                                + name + "' and diff_id ='a0'");

                if (rset.next()) {
                    blob = (BLOB) rset.getBlob("CONTENT");
                    flag = false;
                }
            }
            OutputStream outToPage = blob.getBinaryOutputStream();
            outToPage.write(content.getBytes());
分享到:
评论
发表评论

文章已被作者锁定,不允许评论。

相关推荐

Global site tag (gtag.js) - Google Analytics