Skip to content
shenhuan2021 edited this page Mar 3, 2024 · 5 revisions

Align AS keyword in select list.

Delphi

  • gfmtopt.IntoClauseInNewline, type of boolean

Java

  • TODO

Uniform

  • into item in the same line as INTO keyword

    Option: fmt005_select_into_clause_in_newline = false, type: TFmtBoolean.

    SELECT Lastname, 
           Firstname 
    INTO   Persons_backup 
    FROM   Persons 
  • into item in new line, indented by 1 to n

    Option: fmt005_select_into_clause_in_newline = true, type: TFmtBoolean.

    Option: fmt006_select_into_clause_indent = n, type: int.

    SELECT Lastname, 
           Firstname 
    INTO   
      Persons_backup 
    FROM   Persons 
Clone this wiki locally