首页 > 开发 > 综合 > 正文

Websharp使用说明(4)

2024-07-21 02:17:17
字体:
来源:转载
供稿:网友
数据的存取方式

数据存取的目的,是持久化保存对象。在websharp中,定义了persistencemanager接口来实现这个功能。persistencemanager的定义可以见:附1:websharp主要接口定义——persistencemanager



我们可以使用如下的方式来持久化保存一个对象:

product product=new product (true);

……//处理product

persistencemanager pm = persistencemanagerfactory.instance().

createpersistencemanager();

pm.persistnewobject(p);

pm.close();




代码非常简明和直观,没有一大堆数据库操纵的代码,也不容易发生差错。

也可以通过向persistencemanagerfactory 传递一个persistenceproperty参数来初始化一个persistencemanager,如:

persistenceproperty pp=new persistenceproperty();

pp……//设置pp的属性

persistencemanager pm = persistencemanagerfactory.instance().createpersistencemanager(pp);


关于persistenceproperty的说明,可以见后面的系统持久化配置信息一节。



事务处理

在很多时候,在处理对象保存的时候,我们需要使用事务处理,特别是在处理上上面示例中的类似于入库单的一对多结构的对象的时候。在websharp中,我们可以通过transaction 接口来完成这个功能。transaction接口的定义可以见:附1:websharp主要接口定义——transaction

下面是使用事务处理的一个例子:

product product=new product (true);

……//处理product

persistencemanager pm = persistencemanagerfactory.instance().

createpersistencemanager();

transaction trans=pm.currenttransaction;

trans.begin();

try

{

pm.persistnewobject(p);

trans.commit();

}

catch(excption e)

{

trans.rollback();

}

finally

{

pm.close();

}



收集最实用的网页特效代码!

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表