掌握TreeView用法

来源:未知 责任编辑:责任编辑 发表时间:2014-01-25 11:35 点击:
 \


DAL层代码:
 1 using System.Collections.Generic;
 2 using System.Data;
 3 using DataTreeModel;
 4 using System.Data.SqlClient;
 5 using System.Windows.Forms;
 6
 7 namespace DataTreeDAL
 8 {
 9     class TreesNodeDAL
10     {
11         //根据Parentid返回表中所有的的实体对象
12         public IEnumerable<ItemsNode> GetEveryOneByParent(int id)
13         {
14         DataTable dt=sqlHelper.GetDatatable("select * from ItemsNode where parentId =@id",
15             new SqlParameter("id",id));
16         List<ItemsNode> list = new List<ItemsNode>();
17             foreach (DataRow row in dt.Rows)
18             {
19                 list.Add(CreateItemsNose(row));//添加对象
20             }
21             return list;
22         }
23         //更新表中的记录
24         public int UpdateRecord(ItemsNode item)
25         {
26          return sqlHelper.ExecuteNonQuery("update ItemsNode set name=@name,content=@content where id=@id", new SqlParameter("name", item.name), new SqlParameter("content", item.content),new
27              SqlParameter("id",item.Id));
28         }
29
30         public int InsertRecord(ItemsNode item)
31         {
32             return sqlHelper.ExecuteNonQuery("Insert into ItemsNode (name,content,parentId) values(@name,@content,@parentId)", new SqlParameter("name", item.name), new SqlParameter("content", item.content), new
33             SqlParameter("parentId", item.parentId));
34         }

发表评论
请自觉遵守互联网相关的政策法规,严禁发布色情、暴力、反动的言论。
用户名: 验证码:点击我更换图片
最新评论 更多>>

推荐热点

  • 浅析.NET下XML数据访问新机制
  • asp.net 面试+笔试题目第1/2页
  • C# 邮件地址是否合法的验证
  • C#高级编程:数据库连接[1]
  • asp.net 设置GridView的选中行的实现代码
  • 经典C++程序1
  • IIS 自动回收导致后台定时器失效的问题解决
  • ASP.NET&#160;GridView列表代码示例
  • 微软ASP.NET站点部署指南(3):使用Web.Config文件的Transforma
网站首页 - 友情链接 - 网站地图 - TAG标签 - RSS订阅 - 内容搜索
Copyright © 2008-2015 计算机技术学习交流网. 版权所有

豫ICP备11007008号-1