I want to differ between characters c and č or e and é.
Is it possible to handle binary strings for mysql with Propel? Or can I handle it without Propel directly in my MySQL-database (only for one table, some other tables still shall treat it all the same). However, queries will still be executed with Propel (does Propel support BINARY in queries?).
Propel VARBINARY only maps to MySQL BLOB (which is the same as Propel BLOB) and Propel's VARBINARY and BLOB seem pretty complicated to use (they return a resource id).
So I tried Propel CLOB, which maps to MySQL LONGTEXT. This works well in usage, but then again e and é are the same. So it is not different from my current VARCHAR.
Currently I am using VARCHAR with a length of 50.