2007年8月25日
摘要: 当 SET NOCOUNT 为 ON 时,不返回计数(表示受 Transact-SQL 语句影响的行数)。当 SET NOCOUNT 为 OFF 时,返回计数。 如果存储过程中包含的一些语句并不返回许多实际的数据,则该设置由于大量减少了网络流量,因此可显著提高性能 阅读全文
posted @ 2007-08-25 14:48 一路前行 阅读(244) 评论(0) 推荐(0) 编辑
摘要: private string FormatString(string strValue) { strValue = strValue.Replace(" ", " ");//处理空格 strValue = strValue.Replace("", ">");//处理大于号 strValue = strValue.Replace("\n", "");//... 阅读全文
posted @ 2007-08-25 11:35 一路前行 阅读(352) 评论(0) 推荐(0) 编辑