1

我有一个 .NET 3.5 Web 应用程序,它有一组处理实体持久性的类。INSERT 和 SELECT 准备好的命令起作用。但是 UPDATE 命令永远不会起作用(没有更新数据库记录)并且它永远不会引发异常。它也总是返回 1,因此即使 command.ExecuteNonQuery() 也会返回有效数量的受影响行。

现在,当我采用相同的实体类并在测试控制台应用程序中运行它时,准备好的语句就可以工作了。

这真的很令人沮丧,而且是一个完整的表演终结者。我什至在 Ubuntu、Mac OS X 和 Windows 上的 Mono 中都试过这个。全部执行相同(Web 应用程序中没有更新记录,插入工作和控制台应用程序工作)。

    public void Store()
    {
        SqlConnection conn = new SqlConnection(this.connection_string);
        conn.Open();
        SqlCommand cmd = conn.CreateCommand();
        int i = 0;
        if (this.id == 0)
        {
            // INSERT a new RECORD
            cmd.CommandText = "INSERT INTO [VtelCenter] ([CommonName],[Location]) VALUES (@commonname, " +
                "@location)";
            cmd.Parameters.Add("@commonname", SqlDbType.NVarChar, this.CommonName.Length);
            cmd.Parameters["@commonname"].Value = this.CommonName;
            cmd.Parameters.Add("@location", SqlDbType.NVarChar, this.Location.Length);
            cmd.Parameters["@location"].Value = this.Location;
        }
        else
        {
            // UPDATE an existing RECORD
            cmd.CommandText = "UPDATE [VtelCenter] SET [CommonName] = @commonname, [Location] = @location, " +
                "[Status] = @status WHERE [ID] = @id";
            //cmd.CommandText = "EXEC [dbo].[UpdateVtelCenter] @id, @commonname, @location, @status";
            cmd.Parameters.Add("@commonname", SqlDbType.NVarChar, this.commonName.Length);
            cmd.Parameters["@commonname"].Value = this.CommonName;
            cmd.Parameters.Add("@location", SqlDbType.NVarChar, this.Location.Length);
            cmd.Parameters["@location"].Value = this.Location;
            cmd.Parameters.Add("@status", SqlDbType.Int);
            cmd.Parameters["@status"].Value = (int) this.Status;
            cmd.Parameters.Add("@id", SqlDbType.Int);
            cmd.Parameters["@id"].Value = this.Id;

        }
        cmd.Prepare();
        i = cmd.ExecuteNonQuery();            
        if (i != 1) 
            throw new Exception(string.Format("Incorrect number of records stored: {0}, should be 1.", i));
        conn.Close();
    }
4

1 回答 1

2

一些有助于调试的想法。

  1. 在 VtelCenter 表上查找可能会更改您的预期结果的任何 UPDATE 触发器(AFTER 或 INSTEAD OF)。
  2. 在您的数据库服务器上运行 SQL Profiler 跟踪,以便您可以捕获在该端传递的查询。
于 2010-11-02T13:59:00.150 回答