I would make sure you didn't do this by saying
Create Table "TableName" ("ColumnName" Number(10,0))....
If you then try to reference them with the following script:
Select ColumnName from TableName....
it will not work. This is because Oracle accepts names without quotes, such as TableName, and turns them into a TABLENAME that does not exist when you declared it with the "TableName" on which you acted: "Only respond to queries with such an exact capitalization which are also in quotation marks "
Thus, the following would be done:
Select "ColumnName" from "TableName"....
But basically, you should never use case-sensitive definitions because they require every request to be quoted.
Instead of this
Create Table TableName (ColumnName Number(10,0))....
and he will respond to any capitalization that you want to use when requesting
source share