C# cmd.ExecuteScalar(): “Cannot continue the execu

2019-06-27 04:40发布

Getting a weird exception from ExecuteScalar() that I cannot find any help for on the web:

Cannot continue the execution because the session is in the kill state.

I'm using SqlConnection/SqlCommand

The command is a basic INSERT INTO... with 105 columns (and 105 parameters to set the column data) followed by a SELECT SCOPE_IDENTITY();

I've checked the connection string - it is correct and the connection is open.

I'm not even sure what this error is telling me to know where to start looking on this one.

So what exactly does this error mean? How does a session get in the kill state to begin with?

Code is pretty straight forward:

using (SqlConnection conn = new SqlConnection(connString))
{
    conn.Open();
    using (SqlCommand cmd = new SqlCommand(@"INSERT INTO VendorNote (VendorId, AdminComment...) VALUES (@VendorId, @AdminComment, ...); SELECT SCOPE_IDENTITY(); ", conn))
    {
        cmd.Parameters.AddWithValue("@VendorId", VendorId);
        cmd.Parameters.AddWithValue("@AdminComment", AdminComment);
        Id = (int) cmd.ExecuteScalar();
    }
}

3条回答
太酷不给撩
2楼-- · 2019-06-27 05:00

It could be due to an Always On Availability Group 'Failover'... Whenever I have a running query, connected to an AG Listener, and there is a failover, I get an SqlException having the Message of 'Cannot continue the execution because the session is in the kill state.'...

查看更多
仙女界的扛把子
3楼-- · 2019-06-27 05:12

Your code should look like this:

const string sqlString = "INSERT INTO dbo.Table ( ....) " +
                         "               VALUES ( .... );" +
                         "SELECT SCOPE_IDENTITY();";
using (conn)
{
    using (var cmd = new SqlCommand(sqlString, conn))
    {
        cmd.Parameters.AddWithValue("@param", param);

        cmd.CommandType = CommandType.Text;
        conn.Open();
        return (int) (decimal) cmd.ExecuteScalar();

    }
}

But note sometime a stored procedure will be more appropriate

查看更多
我欲成王,谁敢阻挡
4楼-- · 2019-06-27 05:16

FOUND IT!

There was a constraint violation in the query that was causing execution of the query to fail. Instead of reporting that info in the exception - it was reporting that the session was in a "kill state" (I'm guessing ) because the query was terminated prematurely.

I've never seen this error before - normally constraint errors and such have something more useful in the exception.

So anybody getting this error - REALLY check over your query to make sure it's valid.

查看更多
登录 后发表回答