Domanda

What is the difference between:

myCommand.Parameters.AddWithValue("search", "% " + myValue + " %");

and:

myCommand.Parameters.AddWithValue("@search", "% " + myValue + " %");

The difference above is with and without the @ symbol. Does it do anything special?

È stato utile?

Soluzione

You need to use the variant with the '@'. The '@' symbol signifies a variable or a stored procedure / function parameter.

Altri suggerimenti

in sql stored procs or functions you must specify parameters name by '@' sign at the beginning of their name

Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top