摘要:
清空MSSQL缓存的语句: [代码]查看代码执行时间,占用CPU等的方法[代码]结果:SQL Server parse and compile time: CPU time = 0 ms, elapsed time = 1 ms.(9934 row(s) affected)Table 'person'. Scan count 1, logical reads 9962, physical rea... 阅读全文
摘要:
第四章 委托与事件目标本章学习目标:1.使用Delegate类控制组件间的交互2.使用Event语句、EventHandler委托和EventArgs类控制组件间的交互委托的定义:委托实现了函数回调功能委托确保了回调方法是类型安全的委托集成了连续调用多个方法的功能委托是引用类型,这与类和接口相似namespace DelegateDemo{ public static class A { publ... 阅读全文
摘要:
从数据库中读取数据,并将数据和结构存储到XML中:[代码]从XML中读取数据和数据架构到DataSet中代码Code highlighting produced by Actipro CodeHighlighter (freeware)http://www.CodeHighlighter.com/--DataSetds=newDataSet();ds.ReadXmlSchema(@"c:\use... 阅读全文