1

我能够让这个程序与一个存储过程一起工作。是否可以在 C# 中从 MYSQL 调用多个存储过程?如果是这样,最有效的方法是什么?这是我的代码片段,展示了我到目前为止所做的事情:

public static string RunSQL()
{
    // Here is where it is connecting to local host.
    string connStr = "server=localhost;user=xxxx;"
                     + "database=xxxx;port=3306;password=xxx;"
                     + "Allow User Variables=True";
    MySqlConnection conn = new MySqlConnection(connStr);

    // Here is where the connection gets opened.
    conn.Open();

    // Here I call the CN_renumber stored procedure.
    MySqlCommand CN_renumber = new MySqlCommand("CN_renumber", conn);
    CN_renumber.CommandType = System.Data.CommandType.StoredProcedure;

    object result = CN_renumber.ExecuteNonQuery();

    // Disconnect from local host.
    conn.Close();

    return result.ToString();
}
4

1 回答 1

0

您可以MySQLCommand多次重复使用您的对象,但在此之前您应该确保调用myCommand.Parameters.Clear();,然后再次分配新Stored Procedure名称。

有用的问题与示例here

于 2013-03-04T16:02:30.323 回答