OpenQuizz
Une application de gestion des contenus pédagogiques
|
Public Member Functions | |
def | __init__ (self, raw_result, acknowledged) |
def | raw_result (self) |
def | matched_count (self) |
def | modified_count (self) |
def | upserted_id (self) |
![]() | |
def | __init__ (self, acknowledged) |
def | acknowledged (self) |
The return type for :meth:`~pymongo.collection.Collection.update_one`, :meth:`~pymongo.collection.Collection.update_many`, and :meth:`~pymongo.collection.Collection.replace_one`.
def __init__ | ( | self, | |
raw_result, | |||
acknowledged | |||
) |
def matched_count | ( | self | ) |
The number of documents matched for this update.
def modified_count | ( | self | ) |
The number of documents modified. .. note:: modified_count is only reported by MongoDB 2.6 and later. When connected to an earlier server version, or in certain mixed version sharding configurations, this attribute will be set to ``None``.
def raw_result | ( | self | ) |
The raw result document returned by the server.
def upserted_id | ( | self | ) |
The _id of the inserted document if an upsert took place. Otherwise ``None``.