メインコンテンツまでスキップ

append_row()

This operation appends records to the writer.

public void appendRow(JsonObject rowData)

Request Syntax

remoteBulkWriter.appendRow(
JsonObject rowData
)

PARAMETERS:

  • rowData (JsonObject) -

    A dictionary representing an entity to be appended.

    The keys and their values in the dictionary should match the schema referenced in the current LocalBulkWriter.

RETURN TYPE:

void

Example

for (JsonObject rowObject : data) {
remoteBulkWriter.appendRow(rowObject);
}