using System.Threading
private static Mutex m
2. 修改原先 *** 作数据库的部分,注意的是(数据库查询是不需要的):
if(m==null)
m=new Mutex()
//Enter into mutex area
m.WaitOne()
//Execute sql command here
//Depart from mutex area
m.ReleaseMutex()
欢迎分享,转载请注明来源:内存溢出
using System.Threading
private static Mutex m
2. 修改原先 *** 作数据库的部分,注意的是(数据库查询是不需要的):
if(m==null)
m=new Mutex()
//Enter into mutex area
m.WaitOne()
//Execute sql command here
//Depart from mutex area
m.ReleaseMutex()
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)