错误处理

本文介绍了一个SQL存储过程,用于插入租赁资产记录并更新租赁计划的周期总金额。该过程接收多个输入参数,包括设备ID、位置ID、状态ID等,并输出库存ID。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

          set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go


ALTER Procedure [dbo].[prInsertLeasedAsset_6]
-- Insert leased asset and update total in LeaseSchedule.
    (
        
@intEquipmentId int,
        
@intLocationId int,
        
@intStatusId int,
        
@intLeaseId int,
        
@intLeaseScheduleId int,    
        
@intOwnerId int
        
@mnyLease money,        
        
@intAcquisitionTypeID int,
        
@intInventoryId int OUTPUT
    )
As
set nocount on
SET XACT_ABORT ON--当SQL SERVER在出现错误时候回滚整个事务
Declare @intErrorCode int,
        
@intTransactionCountOnEntry int

Select @intErrorCode = @@Error

If @intErrorCode = 0 and @@trancount = 0--
Begin
    
Select @intTransactionCountOnEntry = @@TranCount
    
BEGIN TRANSACTION
End

If @intErrorCode = 0
begin
    
-- insert asset
    insert Inventory(EquipmentId,     LocationId,              StatusId, 
                     LeaseId,         LeaseScheduleId,         OwnerId, 
                     Lease,           AcquisitionTypeID)
    
values (         @intEquipmentId@intLocationId,          @intStatusId,
                     
@intLeaseId,     @intLeaseScheduleId,     @intOwnerId
                     
@mnyLease,       @intAcquisitionTypeID)
    
Select @intErrorCode = @@Error,
           
@intInventoryId = @@identity
end

If @intErrorCode = 0
begin
    
-- update total
    update LeaseSchedule
    
Set PeriodicTotalAmount = PeriodicTotalAmount + @mnyLease
    
where LeaseId = @intLeaseId
    
Select @intErrorCode = @@Error
end

If @@TranCount > @intTransactionCountOnEntry
Begin
    
If @intErrorCode = 0
        
COMMIT TRANSACTION
    
Else
        
ROLLBACK TRANSACTION
End

return @intErrorCode
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值