Quantcast
Channel: Parameters Count in C#.NET
Viewing all articles
Browse latest Browse all 4

Parameters Count in C#.NET

$
0
0

Hi Mohammed,

In c# arrays and lists are zero base indexed.

If you have two parameters, the count will be 2.

The index of these will be zero and 1.

Therefore if you use count as an index then it's always going to be out of range.

.

I'm not really clear what you're doing there.

Usually you would create a command, use it and let it go out of scope.

So every time you use it, you'd add sqlparameters.

Like this:

https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlparametercollection.addwithvalue.aspx

        command.Parameters.AddWithValue("@demographics", demoXml);

However.

If you already have a parameter set for a command you can set the value:

command.Parameters["@ID"].Value = customerID;



Viewing all articles
Browse latest Browse all 4

Trending Articles