2
Answers

How to prevent a System.Timers.Timer (Server timer) from getting killed or Prevent it from garbage collection

Irfan  Agaria

Irfan Agaria

18y
2.7k
1
Can any one tell me how to prevent a server timer from getting killed on the server or from garbage collection. ACTUAL PROBLEM: I am using this server timer for a scheduling module which will run through my database tables and do some useful work. I have set "Autoreset=true" so that it repeats itself. Now the problem is from some days the timer is getting killed automatically on the server(Previously i used to kill it manually when the elapsed event occured). can any one tell me what the problem could be
Answers (2)
0
Mohammad Mujtaba

Mohammad Mujtaba

NA 16 0 18y
I have found the solution for the stated problem...............it is working....
 we can use this following sql query to resolve the problem....

cmd=new SqlCommand("SELECT "+ (DropDownList1.SelectedValue.ToString()) +".dbo."+ (CheckBoxList1.SelectedItem.ToString()) +".Name , "+(DropDownList1.SelectedValue.ToString()) +".dbo."+ (CheckBoxList1.SelectedItem.ToString()) +".Phone FROM "+(DropDownList1.SelectedValue.ToString()) +".dbo."+ (CheckBoxList1.SelectedItem.ToString())+" LEFT JOIN "+(DropDownList2.SelectedValue.ToString()) +".dbo."+ (CheckBoxList2.SelectedItem.ToString())+" ON "+(DropDownList1.SelectedValue.ToString()) +".dbo."+ (CheckBoxList1.SelectedItem.ToString()) +".Phone="+(DropDownList2.SelectedValue.ToString()) +".dbo."+ (CheckBoxList2.SelectedItem.ToString()) +".Phone",con);

Here "Name"  and  "Phone" are column names of the tables.