dbForge Studio does not format stored procedure call with stacked parameters well
Posted: Mon 17 Feb 2014 15:09
Surprisingly, when you auto-complete a stored procedure call it nicely formats the parameters but when you apply the formatter to the same call, it shifts all the stacked parameters to the left as shown below:
As inserted:
EXECUTE @RC = dbo.spStmWizard @flow_type
,@meas_mask
,@initiate_time
,@interval_length
,@flow_units
As formatted:
EXECUTE @RC = dbo.spStmWizard @flow_type
, @meas_mask
, @initiate_time
, @interval_length
, @flow_units
I don't see an option to change this. Will Studio be getting the updated formatting engine of Complete?
As inserted:
EXECUTE @RC = dbo.spStmWizard @flow_type
,@meas_mask
,@initiate_time
,@interval_length
,@flow_units
As formatted:
EXECUTE @RC = dbo.spStmWizard @flow_type
, @meas_mask
, @initiate_time
, @interval_length
, @flow_units
I don't see an option to change this. Will Studio be getting the updated formatting engine of Complete?