Wednesday 1 August 2018

mysql - How to make propel orm use case-sensitive names

Propel ORM fails to query on the production environment because the database it connects to has case-sensitivity enabled (linux/ubuntu). Since the db is managed by another organization, it's harder to get it fixed than to make the changes to the code from our end.




Is there a way to force Propel ORM to use case-sensitive names?



Thanks!

No comments:

Post a Comment

php - file_get_contents shows unexpected output while reading a file

I want to output an inline jpg image as a base64 encoded string, however when I do this : $contents = file_get_contents($filename); print &q...