Ado. NET Data access Technology

Source: Internet
Author: User
Tags add object sql net access

1. SqlConnection Object Connection Database

Write the following code in the node of the Web.config configuration file:







2. Execute database command using SqlCommand object: Add, update, delete, query

(1) Create command object

String strcnn=configurationmanager.connectionstrings["Studentcnnstring"]. ConnectionString;

SqlConnection cnn=new SqlConnection (STRCNN);//instantiation

Sqlcommand cmd=new Sqlcommand ();//Create Command object

(2) Set the data connection properties of the Command object

Cmd. CONNECTION=CNN;

(3) Assigning the SQL statement to the Command object

cmd.commandtext= "SQL statement";

(4) Open connection, execute SQL command

Cnn. Open ();

Cmd. ExecuteNonQuery ()//Execute SQL command

This article links http://www.cxybl.com/html/wlbc/Asp/20120613/29909.html

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.