Use string Format when executing the Insert statement

Source: Internet
Author: User
SqlConnection conn = new SqlConnection ("server = login; integrated security = sspi; database = library ");
SqlCommand cmd;
Private void btninsert_Click (object sender, EventArgs e)
{
Conn. Open ();
String _ SQL = "insert into login values ('{0}', '{1}', '{2 }')";

/*
Format method:
①. String. Format (string format, object arg0 );
② String. Format (string format, params object [] args );
③ String. Format (IFormatProvider provider, string format, params object [] args );
④ String. Format (string format, object arg0, object arg1, object arg2 );
*/

// ④: String. Format (string format, object arg0, object arg1, object arg2 );
_ SQL = string. format (_ SQL, this. textBox1.Text. toString (). trim (), this. textBox2.Text. toString (). trim (), this. textBox3.Text. toString (). trim ());

/*
②: String. Format (string format, params object [] args );
Object [] aa = new object [] {'A', 'B', 'C', 'D', 'E '};
_ SQL = string. Format (_ SQL, AA );
*/
Cmd = new sqlcommand (_ SQL, Conn );
Cmd. executenonquery ();
Conn. Close ();
MessageBox. Show ("insert the values successfully! ");
}

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.