Categories

Tools

bitdefender

1&1 Web Hosting

Use OleDb classes to read data from an Access database


OleDb classes allow you to manipulate data stored in an Access database. In this simple example we see how do I use.

Code:

// Define the connection string
string connectionString =   "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" +
							Server.MapPath("~/App_Data/Northwind.mdb");
// Define the SELECT command
string selectCommand =   "SELECT Employees.LastName AS Surname, Employees.FirstName  AS Name, Employees.City " +
						 "FROM Employees " +
						 "ORDER BY Employees.LastName";
try
{
	// Create a Connection
	using (OleDbConnection connection = new OleDbConnection(connectionString))
	{
		// Create a DataReader
		OleDbDataReader dataReader = null;

		// Create a Command
		OleDbCommand command = new OleDbCommand(selectCommand, connection);

		connection.Open();

		dataReader = command.ExecuteReader(CommandBehavior.CloseConnection);
		while (dataReader.Read())
		{
			string record = dataReader.GetValue(0).ToString() + " " +
							dataReader.GetValue(1).ToString() + " (" +
							dataReader.GetValue(2).ToString() + ") ";

			Response.Write(record + "<br />");
		}
		dataReader.Close();
		connection.Close();
	}
}
catch (OleDbException excp)
{
	if(debug)
		Response.Write("Error:<br />" + excp.ToString() );
}

The example produces the following result:

Buchanan Steven (London)
Callahan Laura (Seattle)
Davolio Nancy (Seattle)
Dodsworth Anne (London)
Fuller Andrew (Tacoma)
King Robert (London)
Leverling Janet (Kirkland)
Peacock Margaret (Redmond)
Suyama Michael (London)

Posted in ASP.NET by MdmSoft

If our work has been of help, you can help us with a small donation...
Our programmers will thank you!



All information contained in this web site are the property of MdmSoft. The information is provided "as is", MdmSoft will not be liable for any misuse of the code contained in these pages, nor can it be for inaccuracies, grammatical errors or other factors that may have caused damage or lost earnings. MdmSoft is not responsible for the content of comments posted by users.
The examples in this area have the educational and demonstration purposes only, and may be copied only for your reference, but cannot be used for commercial purposes, or for any other purpose, without the express written consent of MdmSoft.
MdmSoft also reserves the right to change, without notice, to your liking this web site, the pages and its sections, and may suspend temporarily or definitely the various services included on this site.
While using this site, you agree to have read and accepted our Terms of Service and Privacy Policy.