Created
February 19, 2016 13:11
-
-
Save swade1987/fe12c3092f82105a92b7 to your computer and use it in GitHub Desktop.
testing 123
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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