PHP Class Phalcon\Db\Adapter\MongoDB\Operation\InsertOne

See also: MongoDB\Collection::insertOne()
See also: http://docs.mongodb.org/manual/reference/command/insert/
Inheritance: implements Phalcon\Db\Adapter\MongoDB\Operation\Executable
Show file Open project: phalcon/incubator Class Usage Examples

Public Methods

Method Description
__construct ( string $databaseName, string $collectionName, array | object $document, array $options = [] ) Constructs an insert command.
execute ( MongoDB\Driver\Server $server ) : InsertOneResult Execute the operation.

Method Details

__construct() public method

Supported options: * bypassDocumentValidation (boolean): If true, allows the write to opt out of document level validation. * writeConcern (MongoDB\Driver\WriteConcern): Write concern.
public __construct ( string $databaseName, string $collectionName, array | object $document, array $options = [] )
$databaseName string Database name
$collectionName string Collection name
$document array | object Document to insert
$options array Command options

execute() public method

Execute the operation.
See also: Executable::execute()
public execute ( MongoDB\Driver\Server $server ) : InsertOneResult
$server MongoDB\Driver\Server
return Phalcon\Db\Adapter\MongoDB\InsertOneResult