using System;
using System.Data.SqlClient;
using System.ServiceProcess;
using Timer = System.Timers.Timer;
namespace WeiBo
{
public partial class Service1 : ServiceBase
{
public Service1()
{
InitializeComponent();
Timer t=new Timer(10000);
t.Elapsed += GetWeiBo;//到时间的时候执行事件;
t.AutoReset = true;//设置是执行一次(false)还是一直执行(true);
t.Enabled = true;//是否执行System.Timers.Timer.Elapsed事件;
}
public void GetWeiBo(object source, System.Timers.ElapsedEventArgs e)
{
try
{
string ConnStr = Settings.Default.ConnStr;
SqlConnection conn = new SqlConnection(ConnStr);
SqlCommand comm = new SqlCommand("insert into tb1(str) values('111')", conn);
conn.Open();
int num=comm.ExecuteNonQuery();
conn.Close();
Utils.LogFile(string.Format("----成功插入{0}条----",num));
}
catch (Exception e1)
{
Utils.LogFile(e1.Message);
throw;
}
}
protected override void OnStart(string[] args)
{
Utils.LogFile("----开始采集----");
}
protected override void OnStop()
{
Utils.LogFile("----采集结束----");
}
}
}
windows服务每隔一段时间执行程序
定时任务与数据库操作
最新推荐文章于 2022-10-09 10:47:30 发布
本文介绍了一个使用 C# 实现的 Windows 服务程序,该程序通过定时器每隔 10 秒执行一次微博数据的抓取及入库操作,并记录日志。主要涉及的技术包括 Timer 的使用、SQL Server 数据库连接及 SQL 命令执行。
2776

被折叠的 条评论
为什么被折叠?



