分享
 
 
 

分享搞定的CLOB字段存取的代码

王朝other·作者佚名  2008-05-19
窄屏简体版  字體: |||超大  

采用得是ORACLE9i数据库,Jboss或Weblogic。

JDBC采用ORACLE9i自带的Class12.jar

-------------

数据库结构:

代码:

CREATE TABLE SNCPARAMETERS

(

ID

NUMBER(19)

NOT NULL,

SNCID

NUMBER(19),

NAME

VARCHAR2(255),

VALUE

CLOB

)

--------------

BO采用xdoclet建立的:

代码:

public class SNCParameters extends BaseObject

{

/**

* Returns the id.

*

* @return

long

* @hibernate.id

*

column = "id"

*

type = "long"

*

generator-class = "native"

*

unsaved-value = "null"

*/

public Long getId()

{

return id;

}

/**

*

Sets the Id attribute of the SNCParameters object

*

* @param

id

The new Id value

*/

public void setId(Long id)

{

this.id = id;

}

/**

* Returns the name.

*

* @return

String

*

* @hibernate.property

*

column = "name"

*

type = "string"

*

not-null = "true"

*

unique = "false"

*/

public String getName()

{

return name;

}

/**

*

Sets the Name attribute of the SNCParameters object

*

* @param

name

The new Name value

*/

public void setName(String name)

{

this.name = name;

}

/**

* Returns the sncId.

*

* @return

Long

*

* @hibernate.property

*

column = "sncId"

*

type = "long"

*

not-null = "true"

*

unique = "false"

*/

public Long getSncId()

{

return sncId;

}

/**

*

Sets the SncId attribute of the SNCParameters object

*

* @param

sncId

The new SncId value

*/

public void setSncId(Long sncId)

{

this.sncId = sncId;

}

/**

* Returns the values.

*

* @return

Clob

*

* @hibernate.property

*

column = "value"

*

type = "clob"

*

not-null = "true"

*

unique = "false"

*/

public Clob getValue()

{

return value;

}

/**

*

Sets the Values attribute of the SNCParameters object

*

* @param

values

The new Values value

*/

public void setValue(Clob value)

{

this.value = value;

}

private Long id;

private Long sncId;

private String name;

private Clob value;

private String valueString;

public String getValueString()

{

return valueString;

}

public void setValueString(String

valueString)

{

this.valueString = valueString;

}

}

注:valueString并不映射到数据库的CLOB字段,只是方便需要使用这个BO的人用GET、SET 处理这个巨长的CLOB字段

------------

xdocLet生成的XML文件:

代码:

<?xml version="1.0"?

<!DOCTYPE hibernate-mapping PUBLIC

"-//Hibernate/Hibernate Mapping DTD 2.0//EN"

"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd"

<hibernate-mapping

<class

name="com.idncn.mc.bo.SNCParameters"

table="SNCParameters"

dynamic-update="false"

dynamic-insert="false"

<id

name="id"

column="id"

type="long"

unsaved-value="null"

<generator class="native"

</generator

</id

<property

name="name"

type="string"

update="true"

insert="true"

column="name"

not-null="true"

unique="false"

/

<property

name="sncId"

type="long"

update="true"

insert="true"

column="sncId"

not-null="true"

unique="false"

/

<property

name="value"

type="clob"

update="true"

insert="true"

column="value"

not-null="true"

unique="false"

/

</class

</hibernate-mapping

--------------------

insert的代码:

代码:

public List batchAddSncParameters(List sncParametersList, Long sncId) throws DbAccessException

{

logger.enterMethod();

List ret = new ArrayList();

try

{

sess = getSession();

if (sncParametersList != null && sncParametersList.size() 0)

{

for (int i = 0; i < sncParametersList.size(); i++)

{

SNCParameters cp = (SNCParameters) sncParametersList.get(i);

long newId = -1;

if (cp != null)

{

SNCParameters cpNew = new SNCParameters();

cpNew.setSncId(sncId);

cpNew.setName(cp.getName());

cpNew.setValue(Hibernate.createClob(" "));

newId = ((Long) sess.save(cpNew)).longValue();

sess.flush();

sess.refresh(cpNew, LockMode.UPGRADE);

String content = cp.getValueString();

String appserver = System.getProperty("appserver", "jboss");

if (!appserver.equalsIgnoreCase("jboss"))

{

//weblogic

OracleThinClob clob = (OracleThinClob) cpNew.getValue();

java.io.Writer pw = clob.getCharacterOutputStream();

pw.write(content);

pw.flush();

pw.close();

}

else

{

//jboss

oracle.sql.CLOB clob = (oracle.sql.CLOB) cpNew.getValue();

java.io.Writer pw = clob.getCharacterOutputStream();

pw.write(content)

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有