Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 559 Bytes

trim_bind_param.md

File metadata and controls

32 lines (24 loc) · 559 Bytes

trim_bind_param

Trim the contents of the bind parameters.

Options

  • true : Trim blanks before and after bind parameters.
  • false (default): Do not trim blanks before and after bind parameters.

Example

before:

SELECT
	*
FROM
	DEPARTMENT
WHERE
	DEPT_NO	=	/*     dept_no     */10

result:

SELECT
	*
FROM
	DEPARTMENT
WHERE
	DEPT_NO	=	/*dept_no*/10