From 7757de96229ae10ac6c3b6126533b69e3bce37c2 Mon Sep 17 00:00:00 2001 From: gnat Date: Sat, 14 Jun 2008 14:46:16 +0000 Subject: [PATCH] setCharset Documentation provided by irc user ivanst --- manual/docs/en/basic-schema-mapping/table-options.txt | 6 ++++++ 1 file changed, 6 insertions(+) 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.