摘要:
1. 建立用来保存树结构数据的目标对象 public class TreeObject { public string name { get; set; } public string value { get; set; } public IList<TreeObject> children = n 阅读全文
摘要:
日志查询 SELECT TOP 100 a.CreateTime AS '运行时间', --b.p_id, --a.Login_UserId AS '操作人id', a.Login_UserName AS '操作人姓名', b.p_remark AS 'sql方法', a.SqlName AS 'S 阅读全文
摘要:
存储过程--查询: if (exists (select * from sys.objects where name = 'GetUser')) drop proc GetUser --判断存储过程是否存在,存在则删除然后重建。 go create proc GetUser --创建存储过程 Get 阅读全文