MAPIConsumerSet.h
上传用户:benben_wyd
上传日期:2010-02-26
资源大小:1229k
文件大小:2k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // MAPIConsumerSet.h : interface of the CMAPIConsumerSet class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_MAPICONSUMERSET_H__1A082C39_C8D8_11D2_9949_D68A87749F4B__INCLUDED_)
  5. #define AFX_MAPICONSUMERSET_H__1A082C39_C8D8_11D2_9949_D68A87749F4B__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CMy
  10. {
  11. public:
  12. CMy()
  13. {
  14. memset( (void*)this, 0, sizeof(*this) );
  15. };
  16. char m_strAuthor[50];
  17. char m_strSubject[256];
  18. char m_strDate[20];
  19. char m_strMessage[1024];
  20. BEGIN_COLUMN_MAP(CMy)
  21. COLUMN_ENTRY_TYPE(1, DBTYPE_STR, m_strAuthor)
  22. COLUMN_ENTRY_TYPE(2, DBTYPE_STR, m_strSubject)
  23. COLUMN_ENTRY_TYPE(3, DBTYPE_STR, m_strDate)
  24. COLUMN_ENTRY_TYPE(4, DBTYPE_STR, m_strMessage)
  25. END_COLUMN_MAP()
  26. };
  27. class CMAPIConsumerSet : public CCommand<CAccessor<CMy> >
  28. {
  29. public:
  30. HRESULT Open()
  31. {
  32. CDataSource db;
  33. CSession session;
  34. HRESULT hr;
  35. CDBPropSet dbinit(DBPROPSET_DBINIT);
  36. dbinit.AddProperty(DBPROP_AUTH_PASSWORD, "");
  37. dbinit.AddProperty(DBPROP_AUTH_PERSIST_SENSITIVE_AUTHINFO, false);
  38. dbinit.AddProperty(DBPROP_AUTH_USERID, "");
  39. dbinit.AddProperty(DBPROP_INIT_DATASOURCE, "");
  40. dbinit.AddProperty(DBPROP_INIT_LCID, (long)0);
  41. dbinit.AddProperty(DBPROP_INIT_LOCATION, "");
  42. dbinit.AddProperty(DBPROP_INIT_MODE, (long)0);
  43. dbinit.AddProperty(DBPROP_INIT_PROMPT, (short)2);
  44. dbinit.AddProperty(DBPROP_INIT_PROVIDERSTRING, "");
  45. dbinit.AddProperty(DBPROP_INIT_TIMEOUT, (long)0);
  46. hr = db.OpenWithServiceComponents("OLEDBMail.MAPIProvider.1", &dbinit);
  47. if (FAILED(hr))
  48. return hr;
  49. hr = session.Open(db);
  50. if (FAILED(hr))
  51. return hr;
  52. CDBPropSet propset(DBPROPSET_ROWSET);
  53. propset.AddProperty(DBPROP_CANFETCHBACKWARDS, true);
  54. propset.AddProperty(DBPROP_IRowsetScroll, true);
  55. propset.AddProperty(DBPROP_IRowsetChange, true);
  56. propset.AddProperty(DBPROP_UPDATABILITY, DBPROPVAL_UP_CHANGE | DBPROPVAL_UP_INSERT | DBPROPVAL_UP_DELETE );
  57. //Don't forget at least one character or space in the command
  58. hr = CCommand<CAccessor<CMy> >::Open(session, " ", &propset);
  59. if (FAILED(hr))
  60. return hr;
  61. return MoveNext();
  62. }
  63. };
  64. //{{AFX_INSERT_LOCATION}}
  65. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  66. #endif // !defined(AFX_MAPICONSUMERSET_H__1A082C39_C8D8_11D2_9949_D68A87749F4B__INCLUDED_)