How to pass variables in C # To SQL

Source: Internet
Author: User

Newbie questions how to pass variables in C # To SQL, such as SqlCommand myCommand = new SqlCommand ("select zkzh, school, name, n1, fzf from yw01 where substring (zkzh, 5, 3) = '001' "I want to replace '001' with a variable fkd. What method should I use? Do I add any characters before the variable?

 

1. string fzf
= "001"; SqlCommand myCommand
= New SqlCommand ("select zkzh, school, name, n1, fzf
From yw01 where substring (zkzh, 5, 3) = @ fzf "; cmd. Parameters. Add (" @ fzf ", fzf );

 

2.

For example: String str = "select zkzh, school, name, n1, fzf from yw01 where aaa = '" + aaa + "'"; // String type variable
String str = "select zkzh, school, name, n1, fzf from yw01 where aaa =" + aaa; // int Type Variable

If you use a stored procedure, you can also build parameter transfer, such:
SqlParameter [] paras = {new SqlParameter ("@ RolesName", SqlDbType. varChar, 50), new SqlParameter ("@ RolesDescription", SqlDbType. varChar, 100), new SqlParameter ("@ CreateDate", SqlDbType. dateTime, 8 )};
Paras [0]. Value = roles. RolesName;
Paras [1]. Value = roles. RolesDescription;
Paras [2]. Value = roles. CreateDate;

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.