zoukankan      html  css  js  c++  java
  • asp的ObjectContext 对象

    ObjectContext 对象用于中止或者提交当前的事务,只有使用 #transaction@TRANSACTION 成功创建或者加入事务后才能够访问

    语法

    ObjectContext.method
     

    方法

    SetAbort 将当前的事务标记为中止,当脚本结束时将取消参与此事物的全部操作
    SetCommit 将当前事务标记为提交,在脚本结束时如果没有其他的 COM+ 对象中止事务,参与事务的操作将全部提交

    事件

    OnTransactionAbort 当脚本创建的事务中止后,将触发 OnTransactionAbort 事件
    OnTransactionCommit 当脚本所创建的事务成功提交后,将触发 OnTransactionCommit 事件

    SetAbort 方法

    将当前的事务标记为中止,当脚本结束时将取消参与此事物的全部操作

    语法

    ObjectContext.SetAbort
    

    SetCommit 方法

    将当前事务标记为提交,在脚本结束时如果没有其他的 COM+ 对象中止事务,参与事务的操作将全部提交

    语法

    ObjectContext.SetCommit
     

    OnTransactionAbort 事件

    当脚本创建的事务中止后,将触发 OnTransactionAbort 事件

    语法

    Sub OnTransactionAbort
        ...
    End Sub
     

    示例

    下面的例子创建一个事务,并在事务中止后发送信息到客户浏览器:

    <%@ TRANSACTION=Required LANGUAGE="VBScript" %>
    <%  ObjectContext.SetAbort
    Sub OnTransactionAbort
        Response.Write "<p><b>The Transaction just aborted</b>." 
        Response.Write "This message came from the "
        Response.Write "OnTransactionAbort() event handler."
    End Sub
    %>

    OnTransactionCommit 方法

    当脚本所创建的事务成功提交后,将触发 OnTransactionCommit 事件

    语法

    Sub OnTransactionCommit
        ...
    End Sub
     

    示例

    下面的例子创建一个事务,并在事务提交成功后发送信息到浏览器:

    <%@ TRANSACTION=Required LANGUAGE="VBScript" %>
    <%
    Sub OnTransactionCommit
        Response.Write "<p><b>The Transaction just committed</b>." 
        Response.Write "This message came from the "
        Response.Write "OnTransactionCommit() event handler."
    End Sub
    %>

  • 相关阅读:
    github设置添加SSH
    pythonanywhere笔记
    Python3x 爬取妹子图
    python3.4 百度API接口
    简易博客开发(8)----django1.9 博客部署到pythonanywhere上
    Python3.4+Django1.9+Bootstrap3
    docker搭建私有仓库之harbor
    docker新手常见问题和知识点
    node之sinopia搭建本地npm仓库
    rancher-HA快速搭建
  • 原文地址:https://www.cnblogs.com/QDuck/p/137706.html
Copyright © 2011-2022 走看看