Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Parameter names newbie question
Message
 
General information
Forum:
Microsoft SQL Server
Category:
Stored procedures, Triggers, UDFs
Environment versions
SQL Server:
SQL Server 2005
Miscellaneous
Thread ID:
01544332
Message ID:
01544343
Views:
17
>>>Hi,
>>>
>>>(sorry for many newbie questions today). Do names of the parameters defined in a stored procedure have to be the same as names defined in the calling procedure? For example, if I am creating a parameter in a .net method and I name the parameter @cMyParam1, exactly the same name has to be in the stored procedure? E.g.
>>>
>>>
>>>procedure MyProc
>>>    @cMyParam1 VarChar(20)
>>>
>>>
>>>Or, as in VFP procedure, the name could be anything? TIA.
>>
>>It depends on how you call the SP. If you use named parameters, they must match. If you simply do
>>execute MyProc 'Value1', 'Value2'
>>then you don't specify name, but you must pass all parameters in the correct order even optional ones.
>>
>>So, I prefer to use named parameters always.
>
>BTW, there still may be a bit of the confusion here. Start from creating your SP and chosing good names for your parameters. Then, when you refer to these parameters in .NET code the names must match.
>
>Parameters.AddWithValue("@MyParam1",...)
>
>although the AddWithValue is not a good way and better to use Add method.

Actually I am trying to match the names in SP to the names in the .NET code (so that I don't have to change the existing .NET code).
"The creative process is nothing but a series of crises." Isaac Bashevis Singer
"My experience is that as soon as people are old enough to know better, they don't know anything at all." Oscar Wilde
"If a nation values anything more than freedom, it will lose its freedom; and the irony of it is that if it is comfort or money that it values more, it will lose that too." W.Somerset Maugham
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform