Добро пожаловать на форум PHP программистов!
За последние 24 часа нас посетили 20666 программистов и 1227 роботов. Сейчас ищут 734 программиста ...
Приступая к работе

MongoDB\Driver\Exception\WriteException::getWriteResult - Returns the WriteResult for the failed write operation

MongoDB\Driver\Exception\WriteException::getWriteResult

(mongodb >= 1.0.0)

MongoDB\Driver\Exception\WriteException::getWriteResultReturns the WriteResult for the failed write operation

Описание

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.

Список параметров

У этой функции нет параметров.

Возвращаемые значения

The MongoDB\Driver\WriteResult for the failed write operation.

Примеры

Пример #1 MongoDB\Driver\Exception\WriteException::getWriteResult() example

<?php

$manager 
= new MongoDB\Driver\Manager('mongodb://localhost');
$bulk = new MongoDB\Driver\BulkWrite;
$bulk->insert(['_id' => 1]);
$bulk->insert(['_id' => 1]);

try {
    
$manager->executeBulkWrite('db.collection'$bulk);
} catch (
MongoDB\Driver\Exception\WriteException $e) {
    
$writeResult $e->getWriteResult();

    if (
$writeConcernError $writeResult->getWriteConcernError()) {
        
var_dump($writeConcernError);
    }

    if (
$writeErrors $writeResult->getWriteErrors()) {
        
var_dump($writeErrors);
    }
}

?>

Результатом выполнения данного примера будет что-то подобное:

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
  }
}

Смотрите также



Вернуться к: MongoDB\Driver\Exception\WriteException

© 2024 «PHP.RU — Сообщество PHP-Программистов»
Главная | Форум | Реклама на сайте | Контакты VIP Сувениры
Разработка компании ODware