将sql语句封装在cs中,通过类库的引用使用他的select.update.insert 源代码(cs): using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; //包括from.where.group by.order by... namespace BLL {//---------------------------…
在日常mysql运维中,经常要查询当前mysql下正在执行的sql语句及其他在跑的mysql相关线程,这就用到mysql processlist这个命令了.mysql> show processlist; //查询正在执行的sql语句mysql> show full processlist; //查询正在执行的完整sql语句mysql> kill connection id //停掉processlist查询出的某个线程,id是对应的…