PHP & MongoDB - Error Handling



MongoDB driver operations throws exceptions in case of any database operations and can be captured easily using following syntax:

try {

} catch (MongoDB\Driver\Exception\Exception $e) {	   
   echo "Exception:", $e->getMessage(), "
"; echo "File:", $e->getFile(), "
"; echo "Line:", $e->getLine(), "
"; }

Example

Try the following example to check database operation error in MongoDB server −

Copy and paste the following example as mongodb_example.php −

 "sampleCollection"]);

      // Execute the command on the database
      $cursor = $manager->executeCommand("myDb", $createCollection);
   
      echo "Collection created.";
   } catch (MongoDB\Driver\Exception\Exception $e) {	   
      echo "Exception:", $e->getMessage(), "
"; echo "File:", $e->getFile(), "
"; echo "Line:", $e->getLine(), "
"; } ?>

Output

Access the mongodb_example.php deployed on apache web server and verify the output.

Exception:Collection already exists. NS: myDb.sampleCollection
File: \htdocs\php_mongodb\mongodb_example.php
Line:10
Advertisements