Skip to content

Commit 9dd5c60

Browse files
authored
Update README.md
1 parent b7f5005 commit 9dd5c60

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

plsql/dynamic-sql/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,20 @@ and
88

99
DBMS_SQL, a comprehensive supplied package API to dynamic SQL operations.
1010

11-
Generally, EXECUTE IMMEDIATE will handle almost all your dynamic SQL requirements. Consider using DBMS_SQL primarily for the most advanced requirements, such as method 4 dynamic SQL. See below for more details on different dynamic SQL methods.
11+
Generally, `EXECUTE IMMEDIATE` will handle almost all your dynamic SQL requirements. Consider using `DBMS_SQL` primarily for the most advanced requirements, such as method 4 dynamic SQL. See below for more details on different dynamic SQL methods.
1212

1313
Method 1 - DDL or non-query DML without bind variables
1414

15-
EXECUTE IMMEDIATE string
15+
EXECUTE IMMEDIATE string
1616

1717
Method 2 - Non-query DML with fixed number of bind variables
1818

19-
EXECUTE IMMEDIATE string USING
19+
EXECUTE IMMEDIATE string USING
2020

2121
Method 3 - Query with fixed number of expressions in the select list and fixed number of bind variables
2222

23-
EXECUTE IMMEDIATE string USING ... INTO
23+
EXECUTE IMMEDIATE string USING ... INTO
2424

2525
Method 4 - Query with dynamic number of expressions in select list or DML with dynamic number of bind variables.
2626

27-
DBMS_SQL is usually the best path to a solution.
27+
DBMS_SQL is usually the best path to a solution.

0 commit comments

Comments
 (0)