Two different ways of Ado:sqldataadapter, and two different ways of SqlCommand

Source: Internet
Author: User
Tags connectionstrings

The original Published time: 2008-08-01--from my Baidu article [imported by moving tools]

SqlDataAdapter: (It is automatically turned on and turned off automatically, so you can turn off the connection without showing it)

SqlConnection conn = new SqlConnection (configurationmanager.connectionstrings["Pusconn"]. ConnectionString);

SqlDataAdapter SDA = new SqlDataAdapter ("select * FROM authors", conn);//First notation

SqlDataAdapter SDA = new SqlDataAdapter ();//second notation
Sda. SelectCommand = new SqlCommand ("SELECT * FROM authors", Conn);

DataSet ds = new DataSet ();

Sda. Fill (ds, "T1");

----------------------------

SqlCommand:

SqlConnection conn = new SqlConnection (configurationmanager.connectionstrings["Pusconn"]. ConnectionString);


SqlCommand cmd=new SqlCommand ("delete from authors where au_id=2", conn);//The first method

SqlCommand cmd=new SqlCommand ();//The second method
Cmd.commandtext = "Delete from authors where au_id=2";
Cmd. Connection = conn;

Conn. Open ();
Cmd. ExecuteNonQuery ();
Conn. Close ();

Two different ways of Ado:sqldataadapter, and two different ways of SqlCommand

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.