企业库中使用transaction(企业库中的列子)
摘要:
CREATE Procedure DebitAccount( @AccountID int, @Amount money)ASINSERT INTO Debits ([AccountID],[Amount])VALUES (@AccountID,@Amount)GO CREATE Procedure CreditAccount( @Account... 阅读全文
posted @ 2005-07-26 16:12 gwazy 阅读(537) 评论(0) 推荐(0) 编辑