Member Junction
    Preparing search index...

    Interface SqlConnectivityResult

    Result of a TCP connectivity check to a SQL Server instance.

    SqlServerAdapter.CheckConnectivity

    interface SqlConnectivityResult {
        ErrorMessage?: string;
        LatencyMs: number;
        Reachable: boolean;
    }
    Index

    Properties

    ErrorMessage?: string

    Human-readable error description (present only when Reachable is false).

    LatencyMs: number

    Round-trip time in milliseconds from connection attempt to result.

    Reachable: boolean

    Whether the TCP connection was established successfully.