0

我有一个网络服务

[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'参数

任何的想法?我在这里

寻找解决方案,但我真的不知道这意味着什么

4

1 回答 1

1

我发现了我的愚蠢错误,我没有在客户端更新我的 Web 参考,我在这里找到了答案,感谢那些提供建议的人。

于 2012-05-10T02:52:08.630 回答