Access 2002 Provider Question

C

Carl

I've run across something that did not seem to be around
in Access 2000 - the current provider. When trying to
set an active index for an open table I get the
error "Runtime error 3251: current provider does not
support necessary interface for index functionality."
The code I am using is:

Set rst = New ADODB.Recordset
Set cnn = New ADODB.Connection
Set cnn = CurrentProject.Connection
rst.Open "tblTransactionFile", cnn, adOpenDynamic
rst.Index = "Master"

I get the above error after entering the last line. I
have tried opening the table using "adOpenKeyset" with
the same results.

Am I correct in assuming that the provider information is
new to Access 2002?

Thanks,
Carl White
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top