![]() |
![]()
| ![]() |
![]()
NAMEMongoDB::InsertOneResult - 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_idThe identifier of the inserted document. 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
|