9b61957154
- [doc getting-started:installation], or - [doc getting-started:installation Custom link text] - Updated Text_Wiki to 1.2.0 - Documentation should now pass XHTML validator - Formatted DSN section so that it's easier on eyes - The single quotes in <code type='php'> won't work anymore due to the Text_Wiki update. Use double quotes instead: <code type="php">. The single quotes have been converted to double quotes in documentation files. - Modified the links in h1-h6 headings to use the same style as the headings. - Some refactoring
32 lines
635 B
Plaintext
32 lines
635 B
Plaintext
++ Manager exceptions
|
|
|
|
Doctrine_Manager_Exception is thrown if something failed at the connection management
|
|
|
|
<code type="php">
|
|
try {
|
|
$manager->getConnection('unknown');
|
|
} catch (Doctrine_Manager_Exception) {
|
|
// catch errors
|
|
}
|
|
</code>
|
|
|
|
++ Relation exceptions
|
|
|
|
thrown if something failed during the relation parsing
|
|
|
|
++ Connection exceptions
|
|
|
|
thrown if something failed at the database level
|
|
|
|
<code type="php">
|
|
try {
|
|
$conn->execute('SELECT * FROM unknowntable');
|
|
} catch (Doctrine_Connection_Exception) {
|
|
// catch errors
|
|
}
|
|
</code>
|
|
|
|
++ Query exceptions
|
|
|
|
thrown if DQL parsing fails somehow
|