we have migrated our Oracle Database to 12c. I have a given table with column names DATE and HOUR (not possible to change). Before I used this statement with c#:
command.CommandText = @"SELECT ""DATE"", ""HOUR"" FROM Table";
This statement is not running with 12c:
ORA-00911: invalid character
What do I have to change? Thanks