SQL Format options index ->Line breaking->Fetch

	Fetch cursor
		First vairable in newline
			gFmtOpt.FetchCursor_FirstVariableInNewline
				boolean
				default: false
			gFmtOpt.FetchCursor_VariablesFitIntoOneline
				integer
				default: 0 // fit into one line

SQL before beautify
FETCH NEXT FROM contact_cursor
INTO @LastName, @FirstName
SQL after beautify
FETCH NEXT FROM contact_cursor
INTO @LastName, @FirstName