Results 1 to 7 of 7

Thread: Jet planes?

  1. #1
    Guest

    Talking

    What's MS Jet?

    Now that I've started using ADO I've seen this term a lot.
    What does it mean?

  2. #2
    Hyperactive Member
    Join Date
    Apr 2000
    Location
    Isle of Man
    Posts
    276
    Jet is the database engine used for Access Databses - so if you wnat to open an mdb/e file using ADO, you use the Jet provider.

  3. #3
    Guest
    So let's say I have an ADO connection and a couple of recordsets, and I load an Access DB into them, what do I use the Jet provider for?

  4. #4
    Frenzied Member
    Join Date
    Aug 1999
    Location
    Santa Clara, Ca , 95058
    Posts
    1,105
    Originally posted by Sc0rp
    So let's say I have an ADO connection and a couple of recordsets, and I load an Access DB into them, what do I use the Jet provider for?
    As a link between the ADO connection and your recordsets. Think of Jet like you would ODBC...

  5. #5
    Guest
    But how do I actually implement it?

  6. #6
    Guru Clunietp's Avatar
    Join Date
    Oct 1999
    Location
    USA
    Posts
    1,844
    YOU don't actually implement it, it is the layer that sits between the database file and DAO/OLEDB (ADO).

    When you program using DAO or ADO with the Jet provider, you are already implementing it

  7. #7
    Guest
    Hold on, so when I do this:

    DB.Open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\mydbfile.mdb"
    RS.Open "RecordsetName", DB, adOpenForwardOnly, adLockReadOnly

    It's actually using the Jet provider?

    And do I have to include a reference to:
    MSJRO.DLL -
    Microsoft Jet and Replication Objects 2.5 Library
    ?

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width