Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I have problem with my Orcle. To access each field and table, it required double quote wrapping around.

For example: select "num", "author" from "article"

I wanna omit these double quote, what should I do?
Posted
Comments
DamithSL 20-Jul-14 8:28am    
any errors with
select num, author from article

1 solution

The problem is that Oracle is case sensitive. It will convert any not enclosed (in double quotes) column name to uppercase before using it. By enclosing it you ensure to use it as it is! If you have error without those double quotes it means that you crated you columns lowercase...
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900