Skip to content

Commit 458b217

Browse files
committed
Fix #117 - Consistent handling of the Oracle database version
1 parent ac47b71 commit 458b217

File tree

6 files changed

+8
-8
lines changed

6 files changed

+8
-8
lines changed

docs/1-introduction/introduction.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This document describes rules and recommendations for developing applications us
44

55
## Scope
66

7-
This document applies to the PL/SQL and SQL language as used within Oracle databases and tools, which access Oracle databases.
7+
This document applies to the PL/SQL and SQL language as used within Oracle databases and tools, which access Oracle databases version 11g Release 2 or later.
88

99
## Document Conventions
1010

docs/4-language-usage/2-variables-and-types/2-numeric-data-types/g-2230.md

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
!!! tip "Minor"
44
Efficiency
55

6-
## Restriction
7-
8-
Oracle 11g or later
9-
106
## Reason
117

128
`simple_integer` does no checks on numeric overflow, which results in better performance compared to the other numeric datatypes.

docs/4-language-usage/3-dml-and-sql/1-general/g-3150.md

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

66
## Restriction
77

8-
Oracle 12c
8+
Oracle Database 12c
99

1010
## Reason
1111

docs/4-language-usage/3-dml-and-sql/1-general/g-3160.md

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

99
## Restriction
1010

11-
Oracle 12c
11+
Oracle Database 12c
1212

1313
## Reason
1414

docs/4-language-usage/3-dml-and-sql/1-general/g-3170.md

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

99
## Restriction
1010

11-
Oracle 12c
11+
Oracle Database 12c
1212

1313
## Reason
1414

docs/4-language-usage/9-function-usage/g-9030.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
!!! tip "Minor"
44
Maintainability, Reliability, Testability
55

6+
## Restriction
7+
8+
Oracle Database 12c Release 2
9+
610
## Reason
711

812
When converting from strings to other datatypes using a conversion function that supports the `default ... on conversion error` clause, it is a good idea to use this clause to avoid getting an error raised on bad input. The exception can be when you explicitly *want* an error to be raised to catch and process it in a later exception handler.

0 commit comments

Comments
 (0)