You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There is no reason to define your own weak ref cursor types, as they are not different from the built-in `sys_refcursor`. Introducing your own types just gives you unnecessary maintenance to perform.
Copy file name to clipboardExpand all lines: docs/9-appendix/appendix.md
+2Lines changed: 2 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -43,6 +43,7 @@ n/a | 2230 | Try to use SIMPLE_INTEGER datatype when appropriate. | Minor | |
43
43
23 | 2340 | Always define your VARCHAR2 variables using CHAR SEMANTIC (if not defined anchored). | Minor | | | | | ✘ | | |
44
44
24 | 2410 | Try to use boolean data type for values with dual meaning. | Minor | | | ✘ | | | | |
45
45
25 | 2510 | Avoid using the LONG and LONG RAW data types. | Major | | | | ✘ | | | |
46
+
n/a | 2610 | Never use self-defined weak ref cursor types. | Minor | ✘ | | ✘ | ✘ | | ✘ | |
46
47
26 | 3110 | Always specify the target columns when coding an insert statement. | Major | | | ✘ | | ✘ | | |
47
48
n/a | 3115 | Avoid self-assigning a column. | Minor | | | ✘ | | | | |
48
49
27 | 3120 | Always use table aliases when your SQL statement involves more than one source. | Major | | | ✘ | | | | |
@@ -89,6 +90,7 @@ n/a | 5010 | Try to use a error/logging framework for your application. | Critic
89
90
55 | 5050 | Avoid use of the RAISE_APPLICATION_ERROR built-in procedure with a hard-coded 20nnn error number or hard-coded message. | Major | ✘ | | ✘ | | | | |
n/a | 5080 | Always use FORMAT_ERROR_BACKTRACE when using FORMAT_ERROR_STACK or SQLERRM. | Minor | | | ✘ | | | | | ✘
92
94
58 | 6010 | Always use a character variable to execute dynamic SQL. | Major | | | ✘ | | | | | ✘
93
95
59 | 6020 | Try to use output bind arguments in the RETURNING INTO clause of dynamic DML statements rather than the USING clause. | Minor | | | ✘ | | | | |
94
96
60 | 7110 | Try to use named notation when calling program units. | Major | ✘ | | ✘ | | | | |
0 commit comments