C++ Access

D

denyoung

Is there a library of functions that allow a C++ user to read and write data
in an Access 2007 data file? I can't find clear info about this elsewhere
and wondered if anyone here knows.

Thanks
 
D

david

The library of database functions is part of your library of classes.

What library of classes are you using? In MFC, you can use
a CDatabase object from the Database Classes. (For Access
2007, only ODBC, not DAO).

There is also a higher-level class system called LINQ for C#

(david)
 
D

denyoung

Thank you all - I was blind.
--
Dennis


Jeff Conrad said:
Dennis, see if this link helps:

http://msdn.microsoft.com/en-us/library/cc811599.aspx

--
Jeff Conrad - Access Junkie - MVP Alumnus
SDET II - Access Test Team - Microsoft Corporation

Co-author - Microsoft Office Access 2007 Inside Out
Presenter - Microsoft Access 2007 Essentials
http://www.accessmvp.com/JConrad/accessjunkie.html
Access 2007 Info: http://www.AccessJunkie.com

----------
This posting is provided "AS IS" with no warranties, and confers no rights.
Use of included script samples are subject to the terms specified at
http://www.microsoft.com/info/cpyright.mspx
 
Top