php8.5
Home/ Manual/ driver / server/ MongoDB\Driver\Server::executeReadWriteCommand

MongoDB\Driver\Server::executeReadWriteCommand

PHP function Edit on GitHub ✎

(mongodb >=1.4.0)

Execute a database command that reads and writes on this server

Description

MongoDB\Driver\Server::executeReadWriteCommand(string $db, MongoDB\Driver\Command $command, array|null $options = null): MongoDB\Driver\Cursor

Executes the command on this server.

This method will apply logic that is specific to commands that read and write (e.g. aggregate). Default values for the "readConcern" and "writeConcern" options will be inferred from an active transaction (indicated by the "session" option), followed by the connection URI.

Parameters

options
OptionTypeDescription

TransactionReadWriteConcern

Return Values Cursor

Errors/Exceptions

  • Throws MongoDB\Driver\Exception\RuntimeException on other errors (e.g. invalid command).

Changelog

VersionDescription
PECL mongodb 1.4.4MongoDB\Driver\Exception\InvalidArgumentException will be thrown if the "session" option is used in combination with an unacknowledged write concern.

Notes Write

See Also

Source: reference/mongodb/mongodb/driver/server/executereadwritecommand.xml · from the official PHP manual (php/doc-en)