Skip to content

Commit a602127

Browse files
use HTML entity for double quote to avoid problems when generating PDF
1 parent 3c9dfcc commit a602127

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/2-naming-conventions/naming-conventions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
## Naming Conventions for PL/SQL
1717

18-
In general, ORACLE is not case sensitive with names. A variable named personname is equal to one named PersonName, as well as to one named PERSONNAME. Some products (e.g. TMDA by Trivadis, APEX, OWB) put each name within double quotes (``) so ORACLE will treat these names to be case sensitive. Using case sensitive variable names force developers to use double quotes for each reference to the variable. Our recommendation is to write all names in lowercase and to avoid double quoted identifiers.
18+
In general, ORACLE is not case sensitive with names. A variable named personname is equal to one named PersonName, as well as to one named PERSONNAME. Some products (e.g. TMDA by Trivadis, APEX, OWB) put each name within double quotes (") so ORACLE will treat these names to be case sensitive. Using case sensitive variable names force developers to use double quotes for each reference to the variable. Our recommendation is to write all names in lowercase and to avoid double quoted identifiers.
1919

2020
A widely used convention is to follow a `{prefix}variablecontent{suffix}` pattern.
2121

0 commit comments

Comments
 (0)