Join
the community
Sign-up
Ask a question »

How to create database connectivity in asp.net

April 2013

Asp.net provided functionality to connect to databases and access the data using SQL. In order to create database connectivity in asp.net, SQL server 2005 or MS Access 2007 can be used for the database. A small program code will be required to create the SQL connection to the database and perform database operations. Some knowledge of programming and SQL is essential to create database connectivity in asp.net. Namespace System.Data.SqlClient has to be used to make the connection to a database. The SQL connection is created through the SqlConnection API and operations on the database can be done through SqlCommand API.

How to create database connectivity in asp.net



Issue



I'm trying to create database connectivity in asp.net with the SQL server 2005 or MS Access 2007?
Can anybody help please?
Thanks in advance.

Solution

  • Step 1 : Add Namspace "using System.Data.SqlClient;"
  • Step 2 : Make SQL connection.


Write this code to create an SQL connection:

SqlConnection con = new SqlConnection("Server=You server name or comp name;Database=Yourdatabasename;Trusted_Connectopn=True");   
SqlCommand cmd = new SqlCommand("Write your sql query here eg. select * from Table name");  
con.Open();   
DataSet ds = new DataSet(cmd,con);   
SqlDataAdapter da = new SqlDataAdapter();   
da.Fill(ds);   
con.Close();

Note


Thanks to dEVELOPER for this tip on the forum.

See also

Knowledge communities.

Published by aakai1056 - Latest update by Alan Oliver
This document entitled « How to create database connectivity in asp.net » from Kioskea (en.kioskea.net) is made available under the Creative Commons license. You can copy, modify copies of this page, under the conditions stipulated by the license, as this note appears clearly.
Receive our newsletter

health.kioskea.net

Auto Start in VB exe file
SQL Server - Export/Import diagram