|
-
Aug 31st, 2000, 11:06 AM
#1
What's MS Jet?
Now that I've started using ADO I've seen this term a lot.
What does it mean?
-
Aug 31st, 2000, 11:15 AM
#2
Hyperactive Member
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.
-
Aug 31st, 2000, 11:47 AM
#3
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?
-
Aug 31st, 2000, 04:36 PM
#4
Frenzied Member
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...
-
Sep 1st, 2000, 05:09 AM
#5
But how do I actually implement it?
-
Sep 1st, 2000, 09:40 AM
#6
Guru
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
-
Sep 1st, 2000, 03:50 PM
#7
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|