SQL IndentLen - sqlparser/sql-pretty-printer GitHub Wiki

Delphi

  • gfmtopt.IndentLen, type of Integer

Java

  • public Integer indentLen, type of Integer

Uniform

  • General indentation size

    Option: fmt124_indent_generic = n, type: TFmtInt.

    General indentation size is used to indent SQL code if there is no specific indent option provided for this SQL segment. Select list in following SQL was indented by 2 spaces.

    SELECT 
      lastname, 
      firstname, 
      jobtitle, 
      department  
    FROM   humanresources.vemployeedepartment;