这个 Oracle SQL Developer 图标在我的存储过程中意味着什么?
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/4169355/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
What does this Oracle SQL Developer icon mean on my stored procedure?
提问by jeph perro
I've been creating stored procedures using Oracle SQL developer.
我一直在使用 Oracle SQL 开发人员创建存储过程。
For some reason, one of the icons does not contain a green circle. What gives? What does this non-green icon mean?
出于某种原因,其中一个图标不包含绿色圆圈。是什么赋予了?这个非绿色图标是什么意思?
回答by Justin Cave
I believe the green circle you're referring to is actually a green bug icon. That indicates that the procedure has been compiled for debug.
我相信你所指的绿色圆圈实际上是一个绿色的虫子图标。这表明该过程已被编译用于调试。
If you are editing a stored procedure in SQL Developer, there should be a gear icon at the top of the edit screen that you use to compile the procedure. If you click the arrow to expand that, you should get options to compile the procedure or to compile for debug. If you select "Compile for Debug", you'll get the green bug icon. If you select "Compile", the bug icon will go away.
如果您正在 SQL Developer 中编辑存储过程,则编辑屏幕顶部应该有一个齿轮图标,用于编译该过程。如果单击箭头将其展开,您应该获得编译程序或编译调试的选项。如果您选择“Compile for Debug”,您将获得绿色的错误图标。如果您选择“编译”,错误图标将消失。