The MongoDB\Driver\Exception\BulkWriteCommandException class
(mongodb >=2.1.0)
Einführung
Exception thrown due to failed execution of a
MongoDB\Driver\BulkWriteCommand. The methods of this
class provide more details of the error that occurred, including the error
reply and partial results from the bulk write.
Eigenschaften
- errorReply
-
Any top-level error that occurred when attempting to communicate with
the server or execute the bulk write. This value may be
null if the
exception was thrown due to errors occurring on individual writes.
- partialResult
-
A MongoDB\Driver\BulkWriteCommandResult reporting
the result of any successful operations that were performed before the
error was encountered. This value may be
null if it cannot be
determined that at least one write was successfully performed (and
acknowledged).
- writeConcernErrors
-
An array of any MongoDB\Driver\WriteConcernErrors
that occurred while executing the bulk write. This list may have
multiple items if more than one server command was required to execute
the bulk write.
- writeErrors
-
An array of any MongoDB\Driver\WriteErrors
that occurred during the execution of individual write operations. Array
keys will correspond to the index of the write operation from
MongoDB\Driver\BulkWriteCommand. This map will
contain at most one entry if the bulk write was ordered.
Inhaltsverzeichnis
There are no user contributed notes for this page.