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:

Table Object