Changeset 4521
- Timestamp:
- 06/14/08 10:42:28 (21 months ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
branches/0.11/manual/docs/en/basic-schema-mapping/table-options.txt
r4400 r4521 49 49 </code> 50 50 51 It is worth noting that for certain databases (Firebird, MySql and PostgreSQL) setting the charset option might not be enough for Doctrine to return data properly. For those databases, users are advised to also use the setCharset function of the database connection: 52 53 <code type="php"> 54 Doctrine_Manager::connection($name)->setCharset("utf8"); 55 </code> 56 51 57 Doctrine offers the ability to turn off foreign key constraints for specific Models. 52 58