ReplicationTable 생성자

정의

ReplicationTable 클래스의 새 인스턴스를 만듭니다.

오버로드

ReplicationTable()

ReplicationTable 클래스의 새 인스턴스를 만듭니다.

ReplicationTable(String, String, String, ServerConnection)

지정된 이름 및 소유자, 지정된 데이터베이스 및 Microsoft SQL Server 인스턴스에 대한 지정된 연결을 사용하여 클래스의 새 ReplicationTable 인스턴스를 만듭니다.

ReplicationTable()

ReplicationTable 클래스의 새 인스턴스를 만듭니다.

public:
 ReplicationTable();
public ReplicationTable ();
Public Sub New ()

설명

기본 생성자는 모든 필드를 기본값으로 초기화합니다.

적용 대상

ReplicationTable(String, String, String, ServerConnection)

지정된 이름 및 소유자, 지정된 데이터베이스 및 Microsoft SQL Server 인스턴스에 대한 지정된 연결을 사용하여 클래스의 새 ReplicationTable 인스턴스를 만듭니다.

public:
 ReplicationTable(System::String ^ name, System::String ^ ownerName, System::String ^ databaseName, Microsoft::SqlServer::Management::Common::ServerConnection ^ connectionContext);
public ReplicationTable (string name, string ownerName, string databaseName, Microsoft.SqlServer.Management.Common.ServerConnection connectionContext);
new Microsoft.SqlServer.Replication.ReplicationTable : string * string * string * Microsoft.SqlServer.Management.Common.ServerConnection -> Microsoft.SqlServer.Replication.ReplicationTable
Public Sub New (name As String, ownerName As String, databaseName As String, connectionContext As ServerConnection)

매개 변수

name
String

데이터베이스의 이름입니다.

ownerName
String

데이터베이스의 소유자입니다. 값을 지정하지 않으면 db_owner 사용자로 가정합니다.

databaseName
String

복제 테이블이 속할 데이터베이스입니다.

connectionContext
ServerConnection

SQL Server 인스턴스와의 연결을 설정하는 데 사용되는 연결 컨텍스트입니다.

적용 대상