⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄

📁 用dephi写的一个银行管理系统
💻
字号:
create procedure xiaohu
   @type nvarchar(36),
   @no char(13),
   @sub1 float,
   @id char(10)
as
begin transaction
 update bank
 set Asset=asset-@sub1
 where card_type=@type
 if @@Error<>0 goto pro

delete from fetch_Depo_log
where customer_id=@id and card_type=@type
if @@Error<>0 goto pro

delete from customer_fund
where customer_id=@id and card_type=@type
if @@Error<>0 goto pro

delete from fund_bill
where card_no=@no and card_type=@type
if @@Error<>0 goto pro

commit transaction
return 0
pro:
Rollback Transaction
return 1

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -