I have a class library, use for select the record in Ms. Access and then take the selected record to insert in SQL Server.
public class SyncDatabase
{
private static SyncDatabase objs = null;
public static SyncDatabase GetInstance
{
get
{
if (objs == null)
objs = new SyncDatabase();
return objs;
}
}
OleDbConnection con = new OleDbConnection("Provider=Microsoft.jet.oledb.4.0; data source=C:/Users/cheata/Desktop/TimeSheet.mdb");
public void GetData()
{
con.Open();
OleDbCommand cmd = new OleDbCommand("select * from tblEmployee_TimeSheet", con);
DataTable dt = new DataTable();
dt.Load(cmd.ExecuteReader());
var _data = dt.AsEnumerable().Select(row => new tblEmployee_TimeSheet
{
ID = row.Field<int>(0),
EID = row.Field<int>(1),
CheckIn = row.Field<DateTime>(2),
CheckOut = row.Field<DateTime>(3),
DateCheck = row.Field<DateTime>(4)
}).ToList();
con.Close();
var context = TimeSheetDataContext.GetInstance;
foreach (tblEmployee_TimeSheet obj in _data)
{
context.Insert<tblEmployee_TimeSheet>(obj);
}
}
}
I have one window service that written with the thread, When the window is start up, MyWindowService also start. And then it will call the thread OnStart.
What I want is to call SyncDatabase class library in my thread OnStart, and then check in the OnStart method, whether the
value that I want to insert is already exist in the record of SQL Server or not yet.
This is my thread :
public partial class Thread : ServiceBase
{
public Thread()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
}
protected override void OnStop()
{
}
}
Could any one tell me how to do that please.
Thanks in advanced.
GetData()in the thread. – Nothing Aug 4 '12 at 2:08OnStart()should perform initialization and start a thread to do the work. It needs to return to the Service Manager fairly promptly to indicate that the service did start. – HABO Aug 4 '12 at 2:27