摘要: 在SQL Server中打开:键入----事务处理----事务的分类----1. 显式事务:使用begin tran明确指定事务开始,即关于事务的所有操作由用户使用代码自行控制use CompanyDBgo----创建表,模拟汇款转账create table AccountInfo(AccountGUID int primary key identity,AccountName nvarchar(20) not null,AccountType nvarchar(20) not null,AccountMoney money not null,AccountState nvarchar(20) 阅读全文
posted @ 2011-05-17 11:18 eva.xiao 阅读(486) 评论(0) 推荐(1)