Basic usage and benefits of C#sqlparameter

Source: Internet
Author: User

Today I see a friend talking about the database SQL injection problem is more complex, wrote a simple case for your reference:

SqlConnection con =NewSqlConnection (MYSQL); //using SqlParameter to prevent SQL injection and some binary stream problems (slices)//SqlParameter sp = new SqlParameter ("@username", sqldbtype.varchar,20); 1: Production of the parameter named @username, 2: The type of the corresponding database, 3: The length of the string//sp. Value = TxtUserName.Text.Trim (); Assigning values to parameters//com. Parameters.Add (SP); Add to COM object//you can write the situation in brief .Sqlparameter[] sp = {NewSqlParameter ("@userName", TxtUserName.Text.Trim ()),NewSqlParameter ("@userPwd", TxtUserPwd.Text.Trim ())}; stringstr ="SELECT * from userlogin where [email protected] and [email protected]";//no single quotes requiredSqlCommand com =NewSqlCommand (str, con); Com.                    Parameters.addrange (SP); Con.                    Open (); SqlDataReader SDR= com. ExecuteReader ();

The first posting, if there is improper also hope that Daniel pointed twos, thank you.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.