I have a Postgres database, and I connect to it via a rest webservice. However, I get an error saying:
Could not find relation 'mytablename'
I believe this is because I have used camel casing in my database and the tables are named like myTableName
. Is there anyway I can disable case sensitivity in postgresql? Or would I have to (if this is possible) make my rest calls case sensitive?