在c# Web服务中使用多个计时器
本文关键字:计时器 Web 服务 | 更新日期: 2023-09-27 18:17:55
我试图在一小时内执行3个数据库相关操作。
1:检查每一分钟的特定时间
2:每15分钟更新一次特定记录
3:每60分钟更新一次特定记录
直到15分钟一切都很好…但在15分钟2计时器必须访问数据库在同一时间。这就是为什么会显示错误。Connection is already Open
。现在60分钟后,所有三个定时器访问数据库在同一时间,所以这就是为什么它会再次显示消息Connection is Already Open
。60分钟后15分钟前一切正常。但是当下一个15分钟到来的时候。消息将再次可见,以此类推。这里是Timer
Timer1:
_Timer = new Timer();
this._Timer.Interval = 1000 * 60 * 1;
this._Timer.Elapsed += new System.Timers.ElapsedEventHandler(this._Timer_Tick);
_Timer.Enabled = true;
这里是_Timer_Tick方法
CheckConnnectionStatus();
string cGroupQuery = "select value from settings where id=1 ";
try
{
sqlConnection.Open();
sqlCommand = new SqlCommand(cGroupQuery, sqlConnection);
sqlDataReader = sqlCommand.ExecuteReader();
if (sqlDataReader.Read())
{
string value= sqlDataReader[0].ToString();
if (value== "True")
{
Library.WriteErrorLog("System State Done Successfully");
TakeSystemState();
UpdateSystemState();
}
}
}
catch (Exception exp)
{
Library.WriteErrorLog(exp.Message.ToString() + " | Exception in CheckPrayerTime");
}
finally
{
CheckConnnectionStatus();
}
Timer2:
_Timer02 = new Timer();
this._Timer02.Interval = 1000 * 60 * 15;
this._Timer02.Elapsed += new System.Timers.ElapsedEventHandler(this._Timer02_Tick);
_Timer02.Enabled = true;
Timer3:
_Timer03 = new Timer();
this._Timer03.Interval = 1000 * 60 * 60;
this._Timer03.Elapsed += new System.Timers.ElapsedEventHandler(this._Timer03_Tick);
_Timer03.Enabled = true;
谁能告诉我在Web Service中的Timer中执行这三个操作的最佳方法?
Sql Server 2008R2 Express Edition
谢谢
根据文档,如果连接已经打开,则SqlConnection.Open()
方法抛出InvalidOperationException
。有关详细信息,请参见:https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnection.open(v=vs.110).aspx
作为一种解决方案,您可以在每个Timer
事件处理程序方法中创建一个新的SqlConnection
对象,并在完成处理后创建Dispose()
对象。
将新创建的SqlConnection
对象放在using
语句中是一个很好的做法,这样即使抛出异常,连接也会被释放:
using (var conn = new SqlConnection())
{
conn.Open();
// ...
}