![]() |
![]()
| ![]() |
![]()
NAMEMongoDB::InsertManyResult - MongoDB single insert result object VERSIONversion v2.2.2 SYNOPSISmy $result = $coll->insert( $document ); if ( $result->acknowledged ) { ... } DESCRIPTIONThis class encapsulates the result from the insertion of a single document. ATTRIBUTESinserted_countThe number of documents inserted. insertedAn array reference containing information about inserted documents (if any). Documents are just as in "upserted". inserted_idsA hash reference built lazily from "inserted" mapping indexes to object IDs. METHODSacknowledgedIndicates whether this write result was acknowledged. Always true for this class. assertThrows an error if write errors or write concern errors occurred. Otherwise, returns the invocant. assert_no_write_errorThrows a MongoDB::WriteError if write errors occurred. Otherwise, returns the invocant. assert_no_write_concern_errorThrows a MongoDB::WriteConcernError if write concern errors occurred. Otherwise, returns the invocant. AUTHORS
COPYRIGHT AND LICENSEThis software is Copyright (c) 2020 by MongoDB, Inc. This is free software, licensed under: The Apache License, Version 2.0, January 2004
|