I'm having a curious problem with SQL Complete (4.0.65) - trial edition
It seems that the format document routine is triggered when the parameter auto completion is used from within a stored procedure ... Sometimes....
If I enter the following
Code: Select all
create PROCEDURE xxxxx.xxxxxx
as
select 1,2
exec felineADM.web_sel_AgentInfo
When I press <ctrl>+<space> it says "Press <tab> to insert a list..."
But when I press <tab> the document is formatted and now looks like this
Code: Select all
create procedure xxxxx.xxxxxx
as
select
1,
2
exec felineADM.web_sel_AgentInfo @UdbyderNummer = '' /* varchar(10) */,
@AgentNummer = '' /* varchar(10) */,
@AgentID = null /* uniqueidentifier */,
@Refkode = '' /* varchar(20) */
However this behavior isn't triggered all the time.
IE. If you comment out the "create procedure" part, it doesn't happen.
Otherwise it's a totally awesome plugin.
Regards,
Martin