#include "stdafx.h"
#import "c:\\Program Files\\Common Files\\System\\ado\\msado15.dll" no_namespace rename("EOF", "EndOfFile")
int main(int argc, char* argv[])
{
printf("Use ADO to open c:\\tmp\\images.dbf database file!\n");
   CoInitialize(NULL);
   try
   {
      _ConnectionPtr pConn("ADODB.Connection");
      _RecordsetPtr  pRst("ADODB.Recordset");
pConn->Open("Driver={Microsoft dBASE Driver (*.dbf)};DBQ=C:\\tmp\\; DriverID=533;"
,"","",adConnectUnspecified);
      pRst->Open("images", _variant_t((IDispatch *) pConn, true),
         adOpenStatic, adLockReadOnly, adCmdTable);
  FieldsPtr fds=pRst->GetFields();
  printf("printf field name of all the table\n");
  for(int i=0;i<fds->GetCount();i++)
  {
  FieldPtr fd=fds->GetItem(_variant_t(short(i)));
  printf("%s   ",(LPCTSTR)fd->GetName());
  }
  printf("\n");
      pRst->Close();
      pConn->Close();
   }
   catch (_com_error &e)
   {
      printf("Description = '%s'\n", (char*) e.Description());
   }
::CoUninitialize();
return 0;
}