我有一个网络服务
[WebMethod]
public void Insert(int node, int date, int time, int rtt)
{
string query = "INSERT INTO pingresult (node, date, time, rtt) VALUES('"+node+"', '"+date+"', '"+time+"', '"+rtt+"')";
if (this.OpenConnection() == true)
{
MySqlCommand cmd = new MySqlCommand(query, connection);
cmd.ExecuteNonQuery();
this.CloseConnection();
}
}
当我尝试使用该方法时
public void Main(string[] args)
{
int node, date, time, rtt;
PingService.Service1 s1 = new ConsoleApplication1.PingService.Service1();
node = 1;
date = 090512;
time = 1720;
rtt = 2222;
s1.Insert(node,date,time, rtt);
}
我得到了这个错误
没有重载方法'插入'需要'4'参数
任何的想法?我在这里
寻找解决方案,但我真的不知道这意味着什么