Поделиться через


Свойство ServerConnection.BatchSeparator

Gets or sets the string value used to separate batches in the referenced connection.

Пространство имен:  Microsoft.SqlServer.Management.Common
Сборка:  Microsoft.SqlServer.ConnectionInfo (в Microsoft.SqlServer.ConnectionInfo.dll)

Синтаксис

'Декларация
Public Property BatchSeparator As String 
    Get 
    Set
'Применение
Dim instance As ServerConnection 
Dim value As String 

value = instance.BatchSeparator

instance.BatchSeparator = value
public string BatchSeparator { get; set; }
public:
property String^ BatchSeparator {
    String^ get ();
    void set (String^ value);
}
member BatchSeparator : string with get, set
function get BatchSeparator () : String 
function set BatchSeparator (value : String)

Значение свойства

Тип: System.String
A String value that specifies the batch separator for the referenced connection. The default value is "GO".

Замечания

The batch separator string contains a word that separates SQL statements into batches, typically "GO". This word is added if the NoCommandTerminator property is set to false.

Примеры

C#

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

PowerShell

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

См. также

Справочник

ServerConnection Класс

Пространство имен Microsoft.SqlServer.Management.Common