1
0
mirror of synced 2025-01-18 06:21:40 +03:00
This commit is contained in:
zYne 2007-07-25 12:42:56 +00:00
parent 330156e7b6
commit 39f33a8742

View File

@ -12,17 +12,18 @@ try {
++ Relation exceptions
thrown if something failed during the relation parsing
Relation exceptions are being thrown if something failed during the relation parsing.
++ Connection exceptions
thrown if something failed at the database level
Connection exceptions are being thrown if something failed at the database level. Doctrine offers fully portable database error handling. This means that whether you are using sqlite or some other database you can always get portable error code and message for the occurred error.
<code type="php">
try {
$conn->execute('SELECT * FROM unknowntable');
} catch (Doctrine_Connection_Exception) {
// catch errors
} catch (Doctrine_Connection_Exception $e) {
print 'Code : ' . $e->getPortableCode();
print 'Message : ' . $e->getPortableMessage();
}
</code>