ServerConnection.StatementTimeout 속성

Gets or sets the number of seconds a statement is given to run before failing with a time-out error.

네임스페이스:  Microsoft.SqlServer.Management.Common
어셈블리:  Microsoft.SqlServer.ConnectionInfo(Microsoft.SqlServer.ConnectionInfo.dll)

구문

‘선언
Public Property StatementTimeout As Integer 
    Get 
    Set
‘사용 방법
Dim instance As ServerConnection 
Dim value As Integer 

value = instance.StatementTimeout

instance.StatementTimeout = value
public int StatementTimeout { get; set; }
public:
property int StatementTimeout {
    int get ();
    void set (int value);
}
member StatementTimeout : int with get, set
function get StatementTimeout () : int 
function set StatementTimeout (value : int)

속성 값

유형: System.Int32
An Int32 value that specifies the number of seconds a statement is given to run before failing with a time-out error.

C#

ServerConnection conn = new ServerConnection();
Console.WriteLine(conn.StatementTimeout);

PowerShell

$conn = new-object Microsoft.SqlServer.Management.Common.ServerConnection
Write-Host $conn.StatementTimeout

참고 항목

참조

ServerConnection 클래스

Microsoft.SqlServer.Management.Common 네임스페이스