The MongoDuplicateKeyException class

(PECL mongo >= 1.5.0)

소개

Thrown when attempting to insert a document into a collection which already contains the same values for the unique keys.

클래스 개요

MongoDuplicateKeyException extends MongoWriteConcernException {
/* 상속된 프로퍼티 */
protected string $message ;
protected int $code ;
protected string $file ;
protected int $line ;
/* 상속된 메소드 */
}

예제

Example #1 Catching MongoDuplicateKeyException

<?php
$mc 
= new MongoClient("localhost");

$c $mc->selectCollection("test""test");

$c->insert(array('_id' => 1));
try {
    
$c->insert(array('_id' => 1));
} catch (
MongoWriteConcernException $e) {
    echo 
$e->getMessage(), "\n";
}
?>

위 예제들의 출력 예시:

localhost:27017: insertDocument :: caused by :: 11000 E11000 duplicate key error index: test.test.$_id_  dup key: { : 1 }
add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top