码迷,mamicode.com
首页 >  
搜索关键字:transaction    ( 2262个结果
sql事务(Transaction)用法介绍及回滚实例_转
sql事务(Transaction)用法介绍及回滚实例事务(Transaction)是并发控制的单位,是用户定义的一个操作序列。这些操作要么都做,要么都不做,是一个不可分割的工作单位。通过事务,SQL Server能将逻辑相关的一组操作绑定在一起,以便服务器保持数据的完整性当对多个表进行更新的时候,...
分类:数据库   时间:2014-07-16 23:12:36    阅读次数:504
PHP SOAP如何传入复杂对象
Paymentexpress有一个SOAP服务方法Check3dsEnrollment(String username,String password, EnrolmentCheckRequest transaction).第三个参数是复杂参数,包括如下属性: acmout,cardNumber,d...
分类:Web程序   时间:2014-07-07 10:27:10    阅读次数:222
effective c++ 条款9 do not call virtual function in constructor or deconstructor
在构造函数中不要调用virtual函数,调用了也不会有预期的效果。举个例子class Transaction{ public: Transaction() { log(); } virtual void log() =0;}class BusinessTran...
分类:编程语言   时间:2014-07-05 20:43:00    阅读次数:209
【LeetCode】Best Time to Buy and Sell Stock
题目 Say you have an array for which the ith element is the price of a given stock on day i. If you were only permitted to complete at most one transaction (ie, buy one and sell one share of the...
分类:其他好文   时间:2014-07-03 17:51:01    阅读次数:235
j2ee安全介绍--转
一.简介现在越来越多的企业应用构建在j2ee平台上,这得益于j2ee为企业应用的开发提供了良好的框架和服务的支持.j2ee为企业应用提供了多方面的服务(Security、Transaction、Naming等).本文将介绍j2ee提供的安全服务.作者首先介绍j2ee中的安全概念和j2ee的安全体系架...
分类:其他好文   时间:2014-07-02 23:20:42    阅读次数:304
Asp.net设计模式笔记之三:业务逻辑层的组织
讲述了业务逻辑层的组织的三种方式:Transaction Script,Active Record以及Domain Model
分类:Web程序   时间:2014-07-02 21:51:46    阅读次数:303
【MySQL案例】ERROR 1665 (HY000)
ERROR 1665 (HY000): Cannot executestatement: impossible to write to binary log since BINLOG_FORMAT = STATEMENTand at least one table uses a storage engine limited to row-based logging.InnoDB is limited to row-logging when transaction isolation level is REA...
分类:数据库   时间:2014-07-02 07:46:46    阅读次数:322
X/Open DTP模型与XA协议的学习笔记
最近的任务是里了解XA协议。要了解XA协议,必须先了解X/Open DTP模型,稍微总结一下:X/Open DTP(Distributed Transaction Process)是一个分布式事务模型。这个模型主要使用了两段提交(2PC - Two-Phase-Commit)来保证分布式事务的完整性...
分类:其他好文   时间:2014-07-01 12:28:17    阅读次数:458
MySQL锁与MVCC
--MySQL锁与MVCC--------------------2014/06/29myisam表锁比较简单,这里主要讨论一下innodb的锁相关问题。innodb相比oracle锁机制简单许多,锁的类型有如下几类:Ashared (S) lockpermits the transaction t...
分类:数据库   时间:2014-07-01 00:13:56    阅读次数:354
YII 中的事务处理机制
$model=Post::model();$transaction=$model->dbConnection->beginTransaction(); try{ $post=$model->findByPk(10); $post->title='new post title'; $po...
分类:其他好文   时间:2014-07-01 00:01:03    阅读次数:236
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!