다음을 통해 공유


AddObject Method

Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.

The AddObject method appends the database object referenced to the list of those objects copied when the Transfer method of the Database object is used to copy database schema or data.

구문

object
.AddObject(
DBObject
)

Parts

  • object
    Expression that evaluates to an object in the Applies To list.
  • DBObject
    Expression that evaluates to a DBObject object.

Prototype (C/C++)

HRESULT AddObject(LPSQLDMODBOBJECT DBObject);

주의

SQL Distributed Management Objects (SQL-DMO) implements copying of database schema and data by using the Transfer object and methods implemented on the Database object. The Transfer object is used to define which database objects are affected by the copy and how the copy is performed. Use the AddObject and AddObjectByName methods to add database objects to those affected by the copy.

[!참고] The ListObjects method of the Database object returns a list of DBObject objects. The method can be used to prepare a list for use by the AddObject method.

Applies to:

Transfer Object