Standard Practices for connecting to Access through ADO

Source: Internet
Author: User
Standard Methods for connecting to Access through ADO: There are two methods for connecting the ADO data object to the database: ODBC and OLEDB (1) ************************************* * ******************** OLEDBProviderforMicrosoftJet ***************** **************

Standard Methods for connecting to Access through ADO: There are two methods for connecting the ADO data object to the database: ODBC and ole db (1) ************************************ * ********************* ole db Provider for Microsoft Jet *********** ********************

Standard Practices for connecting to Access through ADO:

There are two ways to connect ADO data objects to a database: ODBC and ole db.

(1) Using OLE DB

**************************************** ****************

* ** Ole db Provider for Microsoft Jet

**************************************** ****************

Dim oConn, strConn

Set oConn = Server. CreateObject ("ADODB. Connection ")

StrConn = "Provider = Microsoft. Jet. OLEDB.4.0 ;"&_

"Data Source = c: somepathmyDb. mdb ;"&_

"User Id = admin ;"&_

"Password = ;"

OConn. Open strConn

**************************************** ****************

* ** Ole db Provider for ODBC Databases

**************************************** ****************

Access the MS Access Database

Dim oConn, strConn

Set oConn = Server. CreateObject ("ADODB. Connection ")

StrConn = "Provider = MSDASQL ;"&_

"Driver = {Microsoft Access Driver (*. mdb )};"&_

"Dbq = c: somepathmydb. mdb ;"&_

"Uid = myUsername ;"&_

"Pwd = myPassword ;"

OConn. Open strConn

(2) using ODBC

**************************************** ****************

* ** ODBC Driver for Access

**************************************** ****************

Dim oConn, strConn

Set oConn = Server. CreateObject ("ADODB. Connection ")

StrConn = "Driver = {Microsoft Access Driver (*. mdb )};"&_

"Dbq =" & Server. MapPath ("Testdb. mdb ");&_

"Uid = AdminAccount ;"&_

"Pwd = Password ;"

OConn. Open strConn

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.