(转)PL/SQL Developer 使用笔记

PL/SQL Developer 使用笔记

版本:7.1.5.1397

1、auto select & auto execute
Tools->Preferences->SQL Window,将 AutoExecute queries 和 AutoSelect statement 这两项选中即可。只要启用了这个功能之后,按F8(对应“执行”的快捷键),就可以执行光标所在SQL语句了,而不再需要先用鼠标选取需要执行的语句了。

2、关键字自动大写
Tools->Preferences->Editor,将Keyword case选择Uppercase。一般是让关键字大写,其他比如表名、字段名等都是小写。大家都应该养成一种自己的编码习惯,并保持下去。

3、更改默认执行得快捷键F8为Ctrl+Enter(类同toad)
Tools->Preferences->Key Configuration->Session/Execute,然后按Ctrl+Enter。

4、保存登陆密码

Tools->Preferences->Logon History->选上Store with Password。

5、AutoReplace自动替换功能

Tools->Preferences->Editor->AutoReplace->选上Enabled,并Edit文件,加入以下内容:
sf=select * from
scf=select count(*) from
s=select
f=from
w=where
d=delete
u=update

猜你喜欢

转载自ruotongsong.iteye.com/blog/1823716
今日推荐