[C #] C # Database Access Code (Access Version)

Source: Internet
Author: User
// All namespaces used in the import program
Using system;
Using system. Data. oledb;
Using system. Windows. forms;

Class oledbtest {
Public static void main (){
// Establish a connection to the database
String strconnect = "provider = Microsoft. Jet. oledb.4.0; Data Source =" + application. startuppath + "\ My. mdb ";
Oledbconnection aconnection = new oledbconnection (strconnect );

// Design the content of the dataset to be returned
Oledbcommand acommand = new oledbcommand ("select * from persons", aconnection );
Try {
// Open the connection to the database
AConnection. Open ();
// Return the required dataset content
OleDbDataReader aReader = aCommand. ExecuteReader ();
Console. WriteLine ("The following is all the content of a field in the opened dataset! ");
// Display all content of the first field of the dataset. If you want the second field to change "0" to "1"
While (aReader. Read ()){
Console. WriteLine (aReader. GetString (0 ));
}
// Close the dataset
AReader. Close ();
// Close the connection to the database
Aconnection. Close ();
}
Catch (oledbexception E)
{
// If an error occurs, the error message is output.
Console. writeline ("Error Type:", E. errors [0]. Message );
}
}
}

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.