<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_物有所不足，智有所不明</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/23650/rss</id><updated>2009-02-16T09:14:27Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/23650/rss"/><entry><id>http://www.cnblogs.com/FlyingBread/archive/2009/02/16/1391781.html</id><title type="text">获得某段SQL语句执行时间的办法</title><summary type="text">有时候我们需要知道一段SQL语句执行的时间有多长。下面是其中一种办法。 Normal  0 false  false  false EN-US  ZH-CN  X-NONE MicrosoftInternetExplorer4 declare @preDate Datetimeselect @preDate = getdate()print @preDateselect datepart(ms,@...</summary><published>2009-02-16T09:14:00Z</published><updated>2009-02-16T09:14:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2009/02/16/1391781.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2009/02/16/1391781.html"/></entry><entry><id>http://www.cnblogs.com/FlyingBread/archive/2009/02/16/1391774.html</id><title type="text">在SQL Server 2005所有表中搜索某个指定列的方法</title><summary type="text">有时候我们只知道列的名字，但是不知道这列数据到底在哪个表里面，那么可以用下面的办法把含有这列数据的表查找出来。 Normal  0 false  false  false EN-US  ZH-CN  X-NONE MicrosoftInternetExplorer4 SelectO.nameobjectName, C.name ColumnName from sys.columns C inner...</summary><published>2009-02-16T09:11:00Z</published><updated>2009-02-16T09:11:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2009/02/16/1391774.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2009/02/16/1391774.html"/></entry><entry><id>http://www.cnblogs.com/FlyingBread/archive/2009/02/15/1391088.html</id><title type="text">零基础学习SQL Server 2005就是本大烂书</title><summary type="text">真是本烂书。。之所以买是看见网上有人推荐，买回来才知道上了枪手的当。。内容翻译联机手册印刷质量极其差，里面的插图都看不清楚。随书光盘一共12M，里面就是一些文本文档，主要是书里面每一章的例子。东西讲的不清不楚。。价钱还不便宜，66大洋。。一个字：悔！！机械工业出版社，又一次出版了一本烂书。。特此纪念一下。</summary><published>2009-02-15T12:59:00Z</published><updated>2009-02-15T12:59:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2009/02/15/1391088.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2009/02/15/1391088.html"/></entry><entry><id>http://www.cnblogs.com/FlyingBread/archive/2009/02/15/660206.html</id><title type="text">浮点数的表示和基本运算</title><summary type="text">浮点数在计算机内的表示，浮点数表示的特殊约定，将浮点数表示成二进制和十六进制，浮点数的加减法和乘除法的二进制表示</summary><published>2009-02-15T09:37:00Z</published><updated>2009-02-15T09:37:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2009/02/15/660206.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2009/02/15/660206.html"/></entry><entry><id>http://www.cnblogs.com/FlyingBread/archive/2007/03/30/694590.html</id><title type="text">利用TestDriven.net和NUnit进行单元测试</title><summary type="text">单元测试对于保证程序质量是非常有用处的。NUnit和TestDriven都是很好的单元测试工具。Nunit的使用相对说来比较复杂，而且不是非常方便。TestDriven不仅和Visual Studio .Net集成的非常好，而且使用起来相当的快捷。可以大大提高程序的效率。TestDriven能支持大部分NUnit的参数，文中列举了最重要和最常用的TestDriven属性，希望对大家有用，帮大家促进单元测试。</summary><published>2007-03-30T15:23:00Z</published><updated>2007-03-30T15:23:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2007/03/30/694590.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2007/03/30/694590.html"/></entry><entry><id>http://www.cnblogs.com/FlyingBread/archive/2007/03/18/678982.html</id><title type="text">在C#中根据HardwareID获取驱动程序信息</title><summary type="text">使用WMI和PInvoke的方式，根据HardwareID来取得设备的驱动程序信息。WMI的方式虽然简洁，但是存在着效率低，而且不适合某些操作系统。使用PInvoke的方式效率高，兼容多个操作系统，但是编程麻烦，而且需要Windows DDK的支持。文中给出了两种实现方式。</summary><published>2007-03-18T07:55:00Z</published><updated>2007-03-18T07:55:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2007/03/18/678982.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2007/03/18/678982.html"/></entry><entry><id>http://www.cnblogs.com/FlyingBread/archive/2007/03/18/678870.html</id><title type="text">利用C#操作WMI指南</title><summary type="text">如何在C#中使用WMI？如何使用WMI连接远程和本地计算机？常用的WMI查询语句的格式是什么？本文主要讨论了上面的3个问题，还给出了一些参考资料和链接。希望能有所帮助。</summary><published>2007-03-18T05:46:00Z</published><updated>2007-03-18T05:46:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2007/03/18/678870.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2007/03/18/678870.html"/></entry><entry><id>http://www.cnblogs.com/FlyingBread/archive/2007/02/03/638932.html</id><title type="text">利用堆栈解析算术表达式一：基本过程</title><summary type="text">详细描述了利用堆栈将中缀表达式（也就是算术表达式）解析成后缀表达式的过程，还利用堆栈计算了后缀表达式，给出了一个完整的示例代码。</summary><published>2007-02-03T12:56:00Z</published><updated>2007-02-03T12:56:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2007/02/03/638932.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2007/02/03/638932.html"/></entry><entry><id>http://www.cnblogs.com/FlyingBread/archive/2007/02/02/636993.html</id><title type="text">排序1+5：各种排序算法的总结和比较</title><summary type="text">总结了常用的9种排序算法的特点。这9种排序算法包括了冒泡排序，交换排序，选择排序，插入排序，基数排序，谢尔排序，快速排序，合并排序和堆排序。指明了每种排序算法的时间和空间需求，以及各自的适用范围。</summary><published>2007-02-02T15:44:00Z</published><updated>2007-02-02T15:44:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2007/02/02/636993.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2007/02/02/636993.html"/></entry><entry><id>http://www.cnblogs.com/FlyingBread/archive/2007/02/02/636990.html</id><title type="text">排序1+4：归并排序（MergeSort）和堆排序（HeapSort）</title><summary type="text">归并排序（MergeSort）和堆排序（HeapSort）两种排序方法的原理和实现。初步比较了快速排序，归并排序，堆排序，Shell排序几种都是O(nlogn)算法的效率。快速排序通常是最好的选择，但是Shell排序和堆排序也有自己的运用范围。</summary><published>2007-02-02T15:13:00Z</published><updated>2007-02-02T15:13:00Z</updated><author><name>Becool</name><uri>http://www.cnblogs.com/FlyingBread/</uri></author><link rel="alternate" href="http://www.cnblogs.com/FlyingBread/archive/2007/02/02/636990.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/FlyingBread/archive/2007/02/02/636990.html"/></entry></feed>
