Mfc-DBF
Если можно, то покажите пример(линк)по работе с таблицами DBF в Visual C++ (MFC): создание, открытие, индексирование.
Спасибо.
создания таблиц:
1) Open the external database directly.
Construct a CDaoDatabase object and call its Open member function.
Pass the appropriate connection information.
2) Create a tabledef for the new table.
Construct a CDaoTableDef object based on the CDaoDatabase object.
Call the tabledef object’s Create member function, specifying connection
information and the name of the source table on which the tabledef is based.
3) Add fields to the new table.
4) Create the external data file by appending the tabledef object to
the CDaoDatabase object's TableDefs collection.
Непонятно с первым пунктом.
Чтобы 'Open the external database directly', нужно ее сначала Create?
Но 'With Create, you can create only Microsoft Jet (.MDB) databases.
You cannot create ISAM databases or ODBC databases.'
Как же Сreate 'ISAM databases such as dBASE® or Microsoft FoxPro®' ?