The MongoDB\Driver\BulkWriteCommandResult class

(mongodb >=2.1.0)

Introduction

The MongoDB\Driver\BulkWriteCommandResult class encapsulates information about an executed MongoDB\Driver\BulkWriteCommand and is returned by MongoDB\Driver\Manager::executeBulkWriteCommand().

Class synopsis

final class MongoDB\Driver\BulkWriteCommandResult {
/* Methods */
final public getDeletedCount(): int
final public getInsertedCount(): int
final public getMatchedCount(): int
final public getModifiedCount(): int
final public getUpsertedCount(): int
final public isAcknowledged(): bool
}

Table of Contents

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top