sql formatter option: list style of parameter in execute statement

This format option controls whether list style of parameters in SQL Server execute statement, it can be stacked or wrapped.

name: exec_parameters_style, default is stacked

setting path: Execute -> parameter style


EXEC Spr_store_note

  @NoteId = 0,

  @TableTypeId = @TABLE_CUSTOMER,

  @RecordId = @CustomerId,

  @Descr = @Comments 

After set exec_parameters_style to wrapped, SQL will be formatted like this:


EXEC Spr_store_note

  @NoteId = 0,@TableTypeId = @TABLE_CUSTOMER,@RecordId = @CustomerId,@Descr = @Comments 

Newsletter Updates

Enter your email address below to subscribe to our newsletter