简体   繁体   中英

How to configure PL/SQL Developer IDE to leave the columns names as they are?

I have created a table with some columns using PL/SQL Develper to access this Oracle database.

After clicking the "Apply" button that will create the table, all my column names suddenly become upper case (which can hardly be read), including the table name!

Would that be possible to configure PL/SQL Developer IDE to leave the columns names and table names as they are?!

You can give column name in double quote "". Then those column name will be in as it is.

Oracle DBMS ignores case and translates everything to uppercase unless you use quotes. But the quotes have the liability that you always have to use them.

使用引号创建表

选择带引号的表格

If you do not use the quotes you will get an error message ORA-00942: table or view does not exist

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM