다음을 통해 공유


ImportData Method

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

The ImportData method implements the bulk insert of data specified by the controlling BulkCopy object provided as an argument.

구문

object
.ImportData(
BulkCopy
)
as Long

Parts

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

  • BulkCopy
    Expression that evaluates to a BulkCopy object.

Prototype (C/C++)

HRESULT ImportData(
LPSQLDMOBULKCOPY Bcp,
LPLONG plRowsImported = NULL);

Returns

The number of rows written to the Microsoft SQL Server table.

주의

Set BulkCopy object properties to specify data insert parameters, such as the source file and format of the source file, and then use the ImportData method to execute the insert.

For more information about controlling a bulk-insert operation, see BulkCopy Object.

Applies To: