Convert CDAORecordset to what?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi,
Years ago, I wrote a C++ application that used CDAORecordset. I'm now faced
with converting the application to .NET and need some help. When I
originally attempted to build the project, I received errors regarding
CDAORecordset being deprecated.

Any suggestions as to the best path to take in moving this VC++ 6
application to .NET?

- Jim
 
The data provpider you use depends on the data source. For SQL Server,
use SqlClient. For Oracle, OracleClient. For Jet, OleDb.

--Mary
 
Hi Mary,

Thanks. I'll give it a try.

- Jim

Mary Chipman said:
The data provpider you use depends on the data source. For SQL Server,
use SqlClient. For Oracle, OracleClient. For Jet, OleDb.

--Mary
 
Back
Top