![]() |
![]()
| ![]() |
![]()
NAMEMongoDB::DeleteResult - MongoDB deletion result object VERSIONversion v2.2.2 SYNOPSISmy $result = $coll->delete_one( { _id => $oid } ); if ( $result->acknowledged ) { ... } DESCRIPTIONThis class encapsulates the results from a deletion operation. ATTRIBUTESdeleted_countThe number of documents that matched the filter. 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
|