C#-如何将带有@Parameters的Insert发送到数据库连接类

时间:2019-01-04 16:15:03

标签: c# sql sql-server asp.net-core .net-core

在使我的插件正常工作方面存在一些问题。当我在同一方法中全部运行insert时,它可以正常工作……但是,当我尝试将Insert语句发送到新的Connection类(我将处理所有数据库请求)时,出现以下错误。

注意:我正在使用C#和Microsoft SQL Server。

System.Data.SqlClient.SqlException (0x80131904): Must declare the scalar variable "@CollectionGroupID".

我相信我不会发送参数,但是我不确定执行此操作的最佳方法。

这是我的AddGame方法:

public static void AddGame(int gameId)
    {

        string statement = "INSERT INTO Collection (CollectionGroupID, SharedID, UserID, GameID, Owned, Favorited, WishList, DeletedIndicator, AddUser, AddDate, ModUser, ModDate) VALUES (@CollectionGroupID, @SharedID, @UserID, @GameID, @Owned, @Favorited, @WishList, @DeletedIndicator, @AddUser, @AddDate, @ModUser, @ModDate)";

        using (SqlCommand cmd = new SqlCommand())
        {

            cmd.Parameters.AddWithValue("@CollectionGroupID", "0");
            cmd.Parameters.AddWithValue("@SharedID", "0");
            cmd.Parameters.AddWithValue("@UserID", "0"); 
            cmd.Parameters.AddWithValue("@GameID", gameId);
            cmd.Parameters.AddWithValue("@Owned", "Y");
            cmd.Parameters.AddWithValue("@Favorited", "N");
            cmd.Parameters.AddWithValue("@WishList", "N");
            cmd.Parameters.AddWithValue("@DeletedIndicator", "N");
            cmd.Parameters.AddWithValue("@AddUser", "test/admin");
            cmd.Parameters.AddWithValue("@AddDate", DateTime.Now);
            cmd.Parameters.AddWithValue("@ModUser", "test/admin");
            cmd.Parameters.AddWithValue("@ModDate", DateTime.Now);


            Connection.Open();
            Connection.Statement(statement);
            Connection.Close();


        }
    }

这是我的Connection类中的Statement方法

public static void Statement(string sql)
    {
        Console.WriteLine("Attempting to submit data to the database...");

        try
        {
            SqlCommand cmd = new SqlCommand(sql, conn);
            cmd.ExecuteNonQuery();
        }
        catch (SqlException e)
        {
            Console.WriteLine(e);
        }

    }

我觉得也许我正在忽略一个简单的解决方案。任何帮助表示赞赏!

-特拉维斯W。

1 个答案:

答案 0 :(得分:3)

SqlCommand方法的AddGame中定义了命令参数

您将原始Sql传递给Statement方法,并在该方法内部创建了另一个SqlCommand,但未定义参数。这就是为什么不传递参数的原因。

您应该这样做

using (SqlConnection connection = new SqlConnection(connectionString))
{
//OR using (SqlConnection connection = Connection.Open())
//If you want to keep your Connection class to avoid having to pass in connection string.  
    using (SqlCommand cmd = new SqlCommand(statement, connection))
    {
        ...
        cmd.ExecuteNonQuery ()
    }
}

在您的AddGame方法内部