About C#64bit DB Connection Paradox

Asked 2 years ago, Updated 2 years ago, 102 views

// Obtain registry data from OLE DB
conn.ConnectionString=string.Format("Provider=Microsoft.ACE.OLEDB.12.0; Data Source={0}; Extended Properties=Paradox 5.x;", inputFolderName);
conn.Open();

This operation is not supported for this type of IISAM.Use a 2007 Microsoft Office system or earlier version to perform this operation.
The error occurred.
I look forward to your kind cooperation.

c# database

2022-09-30 20:25

2 Answers

The error message is correct.To the features that will be discontinued and changed in Access 2010

Export, import, and link settings for Paradox 3, 4, 5, 6, and 7 are no longer available.

There is a description of .
Also, Microsoft.Jet.OLEDB.4.0 mentioned by pgrho is for 32-bit only and cannot be used in 64-bit applications.


2022-09-30 20:25

How about making the provider name Microsoft.Jet.OLEDB.4.0?


2022-09-30 20:25

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.