当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > ASP.NET 2.0里轻松获取数据库连接统计数据

ASP.NET
在ASP.NET中自动给URL加上超级链接
在ASP.NET中怎么用Session判断用户是否登录?
C#是一种新的语言?或者仅仅只是Java
在网页中动态的生成一个图片
C#实现的18位身份证格式验证算法
Asp.net中的页面乱码的问题
ASP.NET中利用存储过程实现模糊查询
ASP.NET 2.0中构造个性化网页
.net教程:ASP.NET GridView的分页功能
ASP.Net中无刷新执行Session身份验证
用事实说话!AJAX应用程序开发七宗罪
迁移你的Web页面到ASP.NET AJAX 1.0
SQL Server 2005中插入XML数据方法
编程技巧 用Asp.net动态生成html页面
在asp.net 2.0 中使用的存储过程解析
用 asp.net 动态设置 WebService 引用
新手入门之ASP.NET2.0中的缓存技术解析
asp.net编程中实现 MD5 加密
ASP.NET备份恢复SqlServer数据库
Asp.Net输出数据到EXCEL表格中

ASP.NET 2.0里轻松获取数据库连接统计数据


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-08-14   浏览: 70 ::
收藏到网摘: n/a

ASP.NET2.0中的SqlConnection多了一个StatisticsEnabled属性和ResetStatistics()、RetrieveStatistics()两个方法,用于获取SQLServer的连接统计数据。

<%@ImportNamespace="System.Data"%>
<%@ImportNamespace="System.Data.SqlClient"%>
<%@pagelanguage="C#"%>
<scriptrunat="server">
voidPage_Load(objectsender,EventArgse)
{
stringconnString="Northwind的连接串";
SqlConnectionconn=newSqlConnection(connString);
conn.StatisticsEnabled=true;
conn.ResetStatistics();
conn.Open();
SqlCommandcmd=newSqlCommand("SELECT*FROMOrders",conn);
SqlDataReaderreader=cmd.ExecuteReader();
reader.Close();
conn.Close();

Hashtableht=(Hashtable)conn.RetrieveStatistics();
foreach(stringkeyinht.Keys)
{
Label1.Text+="Key:"+key+"="+ht[key]+"<BR/>";
}
}
</script>
<html>
<headid="Head1"runat="server">
<title>UntitledPage</title>
</head>
<body>
<formid="Form1"runat="server"autocomplete="on">
<asp:LabelID="Label1"Runat="server"Text=""></asp:Label>
</form>
</body>
</html>

运行后的结果就是SQLServer连接统计数据结果:

Key:NetworkServerTime=0
Key:BytesReceived=156913
Key:UnpreparedExecs=1
Key:SumResultSets=1
Key:SelectCount=1
Key:PreparedExecs=0
Key:ConnectionTime=30
Key:ExecutionTime=30
Key:Prepares=0
Key:BuffersSent=1
Key:SelectRows=830
Key:ServerRoundtrips=1
Key:CursorOpens=0
Key:Transactions=0
Key:BytesSent=48
Key:BuffersReceived=20
Key:IduRows=0
Key:IduCount=0