MongoDB::InsertManyResult - MongoDB single insert result object
my $result = $coll->insert( $document );
if ( $result->acknowledged ) {
...
}
This class encapsulates the result from the insertion of a single document.
The number of documents inserted.
An array reference containing information about inserted documents (if any).
Documents are just as in "upserted".
A hash reference built lazily from "inserted"
mapping indexes to object IDs.
Indicates whether this write result was acknowledged. Always true for this
class.
Throws an error if write errors or write concern errors occurred. Otherwise,
returns the invocant.
Throws a MongoDB::WriteError if write errors occurred. Otherwise, returns the
invocant.
Throws a MongoDB::WriteConcernError if write concern errors occurred. Otherwise,
returns the invocant.
- David Golden <david@mongodb.com>
- Rassi <rassi@mongodb.com>
- Mike Friedman <friedo@friedo.com>
- Kristina Chodorow <k.chodorow@gmail.com>
- Florian Ragwitz <rafl@debian.org>
This software is Copyright (c) 2020 by MongoDB, Inc.
This is free software, licensed under:
The Apache License, Version 2.0, January 2004