Skip to content

Space inside parenthesis of type name specification of create table statement

Tako Lee edited this page Mar 11, 2014 · 2 revisions
  • No space

    Option: fmt099_space_padding_datatype_parenthesis = false, type: TFmtBoolean.

    CREATE TABLE datatype  
      (fld0 GENERICTYPE, 
       fld1 CHAR(2), 
       fld3 NCHAR(1)); 
  • One space

    Option: fmt099_space_padding_datatype_parenthesis = true, type: TFmtBoolean.

    CREATE TABLE datatype  
      (fld0 GENERICTYPE, 
       fld1 CHAR( 2 ), 
       fld3 NCHAR( 1 )); 
Clone this wiki locally