Trim the contents of the bind parameters.
true
: Trim blanks before and after bind parameters.false
(default): Do not trim blanks before and after bind parameters.
before:
SELECT
*
FROM
DEPARTMENT
WHERE
DEPT_NO = /* dept_no */10
result:
SELECT
*
FROM
DEPARTMENT
WHERE
DEPT_NO = /*dept_no*/10