C #. Net Connect to the Access Database (encryption supported)

Source: Internet
Author: User

This document describes two methods to connect to an Access database:CodeBoth methods and controls support encrypted databases. Both winform and ASP. NET are applicable.

Code Method, With the main source code: complete source code download

  •  /// <Summary>  /// Connect to the database  /// </Summary>  /// <Param name = "connstr"> connection string </param>  Public   Void Connaccess ( String Connstr ){ // Datadirectory project and directory. The generated directory is/debug/bin/. Obtain the path. Connstr =" Provider = Microsoft. Jet. oledb.4.0; Data Source = | datadirectory | \ dB \\ "; Connstr + =" Student1.mdb "; // Encrypt the database      // Connstr + = "student2.mdb; Jet oledb: Database Password = ZZ ";      Using (Oledbconnection conn = New Oledbconnection (connstr )){ Try {Oledbdataadapter da = New Oledbdataadapter (" Select * From t_user ", Conn); dataset DS = New Dataset (); da. Fill (DS ," T_user "); Maid [0]. defaultview ;} Catch (Exception ex) {MessageBox. Show (ex. Message );}}}

Control Mode, With the main source code: complete source code download

    • // Main codeT_usertableadapter.fill (student1dataset. t_user );

Procedure

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.