diff --git a/manual/docs/en/basic-schema-mapping/table-options.txt b/manual/docs/en/basic-schema-mapping/table-options.txt
index a62d7b107..883ca4866 100644
--- a/manual/docs/en/basic-schema-mapping/table-options.txt
+++ b/manual/docs/en/basic-schema-mapping/table-options.txt
@@ -29,6 +29,12 @@ class MyCustomOptionRecord extends Doctrine_Record
}
+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:
+
+
+Doctrine_Manager::connection($name)->setCharset("utf8");
+
+
Doctrine offers the ability to turn off foreign key constraints for specific Models.