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?