zoukankan      html  css  js  c++  java
  • ABAP术语-Logical Lock

    原文:http://www.cnblogs.com/qiangsheng/archive/2008/03/03/1088323.html

    Program logic that locks data during a transaction. When a user changes a data record with a transaction, other users are not allowed to access that record at the same time. The record is locked (with ENQUEUE) for the duration of the processing and only released (with DEQUEUE) afterwards.

    ----------------------
    分隔线上面是 SAP 标准文档中提供的说明
    分隔线下面是我的翻译
    ----------------------
    在一个事务中锁定数据的程序逻辑。当一个用户用一个事务修改数据记录时,其他用户不允许同时访问那条记录。这条记录在处理过程中被锁定(用 ENQUEUE),并且只在其后被释放(用 DEQUEUE)。
  • 相关阅读:
    python-文件操作
    python之-字符编码
    课程总结
    IO流文件输出流的应用
    字符串的基本操作
    数据结构字符串实训报告
    窗口的切换
    事件处理
    Java异常处理
    二维数组实现转置
  • 原文地址:https://www.cnblogs.com/rena/p/9110376.html
Copyright © 2011-2022 走看看