有没有办法使用通用 DbCommand 进行异步更新?

发布于 2024-07-19 17:45:54 字数 1559 浏览 4 评论 0原文

当使用通用 DbCommand 执行更新时,如果正在更新的行被锁定,它将无限期挂起。

使用的底层连接是 Devart 的 Oracle 提供程序 Devart.Data.Oracle.OracleConnection

设置 DbCommand.CommandTimeOut 根本没有效果,更新永远不会超时。

DbCommand没有实现BeginExecuteNonQuery,因此似乎没有办法以异步方式使用DbConnection/DbCommand。

我可以通过使用 Devart 的 OracleCommand 和 BeginExecuteQuery 来解决这个问题,但确实如此。

有没有办法以通用的方式做到这一点?

Oracle 特定逻辑的简化代码:

public bool TestAsyncUpdateRowOracle(string key, OracleConnection con, string sql)
{
    const int timoutIterations=10;
    bool updateOk=false;
    OracleCommand cmd = new OracleCommand(sql, con);
    cmd.Parameters.Add(Util.CreateParameter(dbSrcFactory, DbType.String, 16, "key"));
    cmd.CommandType = CommandType.Text;
    cmd.Parameters[0].Value = key.ToString();

    IAsyncResult result = cmd.BeginExecuteNonQuery();
    int asyncCount = 0;
    while (!result.IsCompleted)
    {
        asyncCount++;
        if (asyncCount > timeoutIterations)
        {
            break;
        }
        System.Threading.Thread.Sleep(10);
    }

    if (result.IsCompleted)
    {
        int rowsAffected = cmd.EndExecuteNonQuery(result);
        Console.WriteLine("Done. Rows affected: " + rowsAffected.ToString());
    }
    else
    {
        try
        {
            cmd.Cancel();
            Console.WriteLine("Update timed out, row is locked");

        }
        catch (Exception e)
        {
            Console.WriteLine(e.ToString());
            Console.WriteLine("Unable to cancel update");
        }
    }
    cmd.Dispose();
}

When using a generic DbCommand to perform an update, it will hang indefinately if the row being updated is locked.

The underlying connection used is is Devart's Oracle provider, Devart.Data.Oracle.OracleConnection

Setting the DbCommand.CommandTimeOut has no effect at all, the update never times out.

DbCommand does not implement BeginExecuteNonQuery, so there seems to be no way to use DbConnection/DbCommand in an asynchronous manner.

I am able to get around this by using Devart's OracleCommand and BeginExecuteQuery, but it does .

Is there a way to do this in a generic way?

Simplified code for the oracle specific logic:

public bool TestAsyncUpdateRowOracle(string key, OracleConnection con, string sql)
{
    const int timoutIterations=10;
    bool updateOk=false;
    OracleCommand cmd = new OracleCommand(sql, con);
    cmd.Parameters.Add(Util.CreateParameter(dbSrcFactory, DbType.String, 16, "key"));
    cmd.CommandType = CommandType.Text;
    cmd.Parameters[0].Value = key.ToString();

    IAsyncResult result = cmd.BeginExecuteNonQuery();
    int asyncCount = 0;
    while (!result.IsCompleted)
    {
        asyncCount++;
        if (asyncCount > timeoutIterations)
        {
            break;
        }
        System.Threading.Thread.Sleep(10);
    }

    if (result.IsCompleted)
    {
        int rowsAffected = cmd.EndExecuteNonQuery(result);
        Console.WriteLine("Done. Rows affected: " + rowsAffected.ToString());
    }
    else
    {
        try
        {
            cmd.Cancel();
            Console.WriteLine("Update timed out, row is locked");

        }
        catch (Exception e)
        {
            Console.WriteLine(e.ToString());
            Console.WriteLine("Unable to cancel update");
        }
    }
    cmd.Dispose();
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

孤单情人 2024-07-26 17:45:54

遗憾的是,不,ADO.NET 中没有具有异步操作的接口或基类(例如 BeginExecuteNonQuery / EndExecuteNonQuery)。 它们仅出现在极少数 ADO.NET 提供程序实现中。 (SqlClient、Devart Oracle)。

也就是说,如果设置 CommandTimeOut 时没有超时,我认为这是提供程序中的错误。

Sadly, no, there is no interface or base class in ADO.NET that has async operations (e.g. BeginExecuteNonQuery / EndExecuteNonQuery). They're only present in very few ADO.NET provider implementations. (SqlClient, Devart Oracle).

That said, if it doesn't time out when a CommandTimeOut is set, in my opinion that's a bug in the provider.

落墨 2024-07-26 17:45:54

您可以使用 NOWAIT 选项发出 LOCK TABLE 吗? 如果锁定失败,这将立即将控制权返回给您并出现错误。 例如:

LOCK TABLE employees
   IN EXCLUSIVE MODE 
   NOWAIT; 

有几种方法可以锁定表。 这里是开发人员的锁定指南部分。 是 SQL 参考页面对于 LOCK TABLE 命令。

另一种选择是使用 SELECT .. FOR UPDATE NOWAIT 语句来锁定要更新的行。 除了更新语句之外,这两个选项都需要向 Oracle 发出其他命令。

Can you issue a LOCK TABLE with the NOWAIT option? This will return control to you immediately with an error if the lock fails. For example:

LOCK TABLE employees
   IN EXCLUSIVE MODE 
   NOWAIT; 

There are several ways to lock the table. Here is the developer's guide section on locking. This is the SQL Reference page for the LOCK TABLE command.

Another option is to use the SELECT .. FOR UPDATE NOWAIT statement to lock the rows you will be updating. Both options require additional commands to be issued to Oracle besides your update statement.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文