Home
About
Contact
Login
Home
Code and Articles
Videos
Books
Search
Demos
Portfolio
Home
>
Categories
>
Code from a Category
Asp.net C# / VB (173)
PHP (25)
MSSQL (54)
CSS (7)
Zoho CRM (42)
Zoho Invoice (1)
jQuery (16)
DotNetNuke (2)
VB.Net (65)
Zoho Creator (4)
Zoho Mail (2)
Other (6)
Zoho Support (1)
How to Create a Database Connection with ASP.Net
User Name:
codelecturer
Name:
Mike Chauhan
Contact Me:
www.datawebcoder.com/ContactUs.aspx
Home Page:
www.datawebcoder.com
Introducing my self, I have 6 years of total IT experience including programming, application development, System Maintenance . 3 years of Experienced and expertise in .Net Framework VB, Visual Basic....
[More]
Viewed Times:
93
Add Date:
01/09/2012
Here, we will discuss about the database connection in asp.net
We are going to use the Northwind database in our examples.
First, import the "System.Data.OleDb" namespace. We need this namespace to work with Microsoft Access and other OLE DB database providers. We will create the connection to the database in the Page_Load subroutine. We create a dbconn variable as a new OleDbConnection class with a connection string which identifies the OLE DB provider and the location of the database. Then we open the database connection:
Note: The connection string must be a continuous string without a line break!
Create a Database Command
To specify the records to retrieve from the database, we will create a dbcomm variable as a new OleDbCommand class. The OleDbCommand class is for issuing SQL queries against database tables:
Create a DataReader
The OleDbDataReader class is used to read a stream of records from a data source. A DataReader is created by calling the ExecuteReader method of the OleDbCommand object:
Bind to a Repeater Control
Then we bind the DataReader to a Repeater control:
Example
Close the Database Connection
Always close both the DataReader and database connection after access to the database is no longer required:
dbread.Close()
dbconn.Close()
Reply above Post
Related Posts
How to Create Column graph with MS Chart in ASP.NET 3.5 (C#).
How to Create an RSS Feed in ASP.NET
How to create Search in ASP.NET
How to create a simple While Loop - MS SQL
How we can extract data from HTML tables and create a DataSet object containing this data
Post a Comment
Name:
(Optional)
Email:
(Optional, you can get an email if somebody replys your comments)*
Email me if somebody respons my comment below:
Yes
No
Details**:
Enter Text
as Below:
(case insensitive, if hard to read, click the "get a new one" button)
* Your email address will not be shared with any third parties for any reason.
** Maximum 1000 charactors.