我正在实现一个带有PHP脚本组合的C#应用程序,以将我的localhost mysql数据库与远程服务器同步。我确实实现了一个PHP脚本来同步两个数据库表。但是,我正在寻找一种在C#中调用我的PHP脚本的解决方案。现在,我正在使用PHP代码下面的本地数据库与远程主机同步:
<?php
include "sync.php";
$sync = new SyncronizeDB();
//masterSet(dbserver,user,password,db,table,index)
$sync->masterSet("localhost","root","","database1","table1","index_id");
//serverSet(dbserver,user,password,db,table,index)
$sync->slaveSet("localhost","root","","database2","table2","index_id");
//syncronizing the slave table with the master table (at row level)
$sync->slaveSyncronization()
?>
我想在我的C#应用程序中运行此脚本。这样,我可以在一定时间内同步我的数据库。
对此的任何帮助都会很棒。
感谢高级!