I am trying to query the mssql database using Doctrine. I set up a connection, built a schema from a database, and built classes. Everything went smoothly, but now when I try to query the database:
symfony doctrine:dql "from TABLE_NAME"
I get the error Invalid column name "column_name" because our mssql database server is configured to use the CASE SENSITIVE and UPPER CASE column names, while the doctrine forces all column names to be lowercase. How to create a doctrine to maintain sensitivity (better) or make it upper case?
source share