码迷,mamicode.com
首页 > 其他好文 > 详细

删除 treeview Node节点 循环删除子节点 存储过程

时间:2015-07-09 11:05:58      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

create  procedure  DeleteNote

 @Objid int--定义要删除树节点

 as

 declare @childID int  --声明变量

 declare cursors cursor local for select Objid from TableChart where parentid=@Objid      --local关键字全局游标

 open cursors

  fetch next from cursors into @childID     --取游标的值赋给变量

  while(@@FETCH_STATUS=0)                   --判断当前游标内是否存在值

  begin

    exec DeleteNote @childID                --递归调用存储过程把孩子节点的值赋给游标递归调用

    fetch next from cursors into @childID   --继续读取游标里面的内容

  end 

  close cursors

  deallocate cursors

delete from TableChart where objid=@Objid    ----存储过程执行的删除方法

 

 

技术分享

删除 treeview Node节点 循环删除子节点 存储过程

标签:

原文地址:http://www.cnblogs.com/hcyblogs/p/4632480.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!