PHP » GoLang |
login |
register |
about
|
GoLang MongoDB\Driver\Exception\WriteException::getWriteResult
request it (238)
GoLang replacement for PHP's MongoDB\Driver\Exception\WriteException::getWriteResult
[edit | history]
PHP MongoDB\Driver\Exception\WriteException::getWriteResultPHP original manual for MongoDB\Driver\Exception\WriteException::getWriteResult [ show | php.net ]MongoDB\Driver\Exception\WriteException::getWriteResult(mongodb >= 1.0.0) MongoDB\Driver\Exception\WriteException::getWriteResult — Returns the WriteResult for the failed write operation Description
final public MongoDB\Driver\WriteResult MongoDB\Driver\Exception\WriteException::getWriteResult
( void
)
Returns the MongoDB\Driver\WriteResult for the failed write operation. The MongoDB\Driver\WriteResult::getWriteErrors() and MongoDB\Driver\WriteResult::getWriteConcernError() methods may be used to get more details about the failure. ParametersThis function has no parameters. Return ValuesThe MongoDB\Driver\WriteResult for the failed write operation. ExamplesExample #1 MongoDB\Driver\Exception\WriteException::getWriteResult() example
<?php The above example will output something similar to: array(1) { [0]=> object(MongoDB\Driver\WriteError)#5 (4) { ["message"]=> string(70) "E11000 duplicate key error index: db.collection.$_id_ dup key: { : 1 }" ["code"]=> int(11000) ["index"]=> int(1) ["info"]=> NULL } } See Also
|
more
Recently updated
more
Most requested
more
Last requests
|