Search Results for

    Show / Hide Table of Contents

    Class NpgsqlOperationInProgressException

    Thrown when trying to use a connection that is already busy performing some other operation. Provides information on the already-executing operation to help with debugging.

    Inheritance
    object
    NpgsqlException
    NpgsqlOperationInProgressException
    Inherited Members
    NpgsqlException.IsTransient
    NpgsqlException.BatchCommand
    Namespace: Npgsql
    Assembly: Npgsql.dll
    Syntax
    public sealed class NpgsqlOperationInProgressException : NpgsqlException

    Constructors

    | Improve this Doc View Source

    NpgsqlOperationInProgressException(NpgsqlCommand)

    Creates a new instance of NpgsqlOperationInProgressException.

    Declaration
    public NpgsqlOperationInProgressException(NpgsqlCommand command)
    Parameters
    Type Name Description
    NpgsqlCommand command

    A command which was in progress when the operation which triggered this exception was executed.

    Properties

    | Improve this Doc View Source

    CommandInProgress

    If the connection is busy with another command, this will contain a reference to that command. Otherwise, if the connection if busy with another type of operation (e.g. COPY), contains null.

    Declaration
    public NpgsqlCommand? CommandInProgress { get; }
    Property Value
    Type Description
    NpgsqlCommand
    • Improve this Doc
    • View Source
    In This Article
    Back to top © Copyright 2023 The Npgsql Development Team