I tried few day of how to synchronize database from Ms. Access 2007 64bits to SQL Server 2008 64bits, But it has no the possible solution. So now I want to create the Window Service to check whether having the new record i insert to MS. ACCESS or not, If there are the new records insert, then they will tell the SQL Server to insert all those records to its record also. I created one solution with 2 projects : This is the main project :
using System.ServiceProcess;
using System.Text;
namespace AutoSync
{
public partial class Thread : ServiceBase
{
public Thread()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
}
protected override void OnStop()
{
}
}
}
And the second project is Service Setup. What I want to try now is, create another class of C#, that check the Ms. Access record, and then pass all the new record that has been inserted to SQL Server. Could anyone give me any idea about that.
Thanks in advanced.