Skip to content

Instantly share code, notes, and snippets.

@swade1987
Created February 19, 2016 13:11
Show Gist options
  • Save swade1987/fe12c3092f82105a92b7 to your computer and use it in GitHub Desktop.
Save swade1987/fe12c3092f82105a92b7 to your computer and use it in GitHub Desktop.
testing 123
var command = new SqlCommand("select * from person where firstname = @firstname");
SqlParameter param = new SqlParameter();
param.ParameterName = "@firstname";
param.Value = "testing12'3";
command.Parameters.Add(param);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment