mmutilva
mmutilva

Reputation: 18994

How do I use OLE-DB to access a dbf file in an COM/C++ ATL application?

How to access the data contained in a dbf file in COM/C++ application (created via ATL)?

Upvotes: 1

Views: 1099

Answers (1)

Nick
Nick

Reputation: 6846

I would use ADO; it's by far the quickest way to get going, even with dealing with the COM aspects of it. Start here. It's much easier than rolling your own Consumer implementation, unless you really need to lower-level access that doing OLEDB directly provides.

Upvotes: 1

Related Questions