SqlScriptDOM icon indicating copy to clipboard operation
SqlScriptDOM copied to clipboard

Add generator option for newlines between statements

Open Stefan-Puskarica opened this issue 4 months ago • 4 comments

Currently the generator only generates one newline between statements which leads to code like this:

CREATE TABLE [MyTable] (
  ...
);
ALTER TABLE [MyTable]
  ...;

Which can be unfavourable, I've added a script generator option that allows you to specify how many newlines you want so you can get something like this instead:

CREATE TABLE [MyTable] (
  ...
);

ALTER TABLE [MyTable]
  ...;

Stefan-Puskarica avatar Oct 06 '24 13:10 Stefan-Puskarica