set long_query_time=1; #设置慢查询时间为1 秒; set global slow_query_log=on; #开启慢查询日志; show global status like 'slow_queries'; #显示慢查询次数 show variables like 'long_query_time' ; #显示慢查询时间; show variables like 'slow_query_log' ; #显示慢查询日志是否开启 日志文件默认在data目录下 在w…
第19课-数据库开发及ado.net ADO.NET--SQLDataReader使用.SqlProFiler演示.ADoNET连接池,参数化查询.SQLHelper .通过App.Config文件获得连接字符串 01对TblStudent表进行增删改查 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Data.SqlClien…