想鸟一样飞翔

专注于php开发。对c++也很有兴趣!!!

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2007年11月25日

摘要: 1. 尽量少的抛出异常 throw new System.Exception(.); 抛出异常是严重影响性能的。 (a) 对于ASP.NET, Response.Redirect(...) 会抛出 ThreadAbort 的异常, 而且,该用法会在 Client 和 Server间返回两次,应尽量采用Client 端的方式或 Server.Transfer方式来代替。 2. 对于函... 阅读全文
posted @ 2007-11-25 22:08 redfox 阅读(143) 评论(0) 推荐(0) 编辑

摘要: 7. 查询第xxx行数据 假设id是主键: select * from (select top xxx * from yourtable) aa where not exists(select 1 from (select top xxx-1 * from yourtable) bb where aa.id=bb.id) 如果使用游标也是可以的 fetch absolute [nu... 阅读全文
posted @ 2007-11-25 22:01 redfox 阅读(211) 评论(0) 推荐(0) 编辑