Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit caee789

Browse files
committed
Added prefix and varchar length coding standards
1 parent ac27054 commit caee789

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

CONTRIBUTING.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,15 @@ Changes are welcome from all members of the Community.
2727

2828
* Snake case will be used. This separates keywords in names with underscores. `execute_test`
2929
* All names will be lower case.
30-
* Arguments to procedures and functions will start with `a_` an example would be procedure `is_valid(a_owner_name varchar2(30));`
30+
* Prefixes:
31+
* Arguments to procedures and functions will start with `a_` an Example would be procedure `is_valid(a_owner_name varchar2(30));`
32+
* Object types and packages will start with `ut_`
33+
* Local variables `l_`
34+
* Global variables `g_`
35+
* Global Constants start with `gc_`
36+
* Types in packages, objects start with `t_`
37+
* Nested Tables start with `tt_`
38+
* varchar2 lengths are set in characters not bytes
3139

3240

3341
## New to GIT ##

0 commit comments

Comments
 (0)