MYPROVIDERSESS.H
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // Session.h : Declaration of the CMyProviderSession
  2. //
  3. // This is a part of the Active Template Library.
  4. // Copyright (C) 1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // ActiveX Template Library Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // ActiveX Template Library product.
  12. #ifndef __CMyProviderSession_H_
  13. #define __CMyProviderSession_H_
  14. #include "resource.h"       // main symbols
  15. #include "MyProviderRS.h"
  16. /////////////////////////////////////////////////////////////////////////////
  17. // CMyProviderSession
  18. class ATL_NO_VTABLE CMyProviderSession :
  19. public CComObjectRootEx<CComMultiThreadModel>,
  20. public IGetDataSourceImpl<CMyProviderSession>,
  21. public IOpenRowsetImpl<CMyProviderSession>,
  22. public ISessionPropertiesImpl<CMyProviderSession>,
  23. public IObjectWithSiteSessionImpl<CMyProviderSession>,
  24. public IDBCreateCommandImpl<CMyProviderSession, CMyProviderCommand>
  25. {
  26. public:
  27. CMyProviderSession()
  28. {
  29. }
  30. HRESULT FinalConstruct()
  31. {
  32. return FInit();
  33. }
  34. STDMETHOD(OpenRowset)(IUnknown *pUnkOuter, DBID *pTableID, DBID *pIndexID, REFIID riid,
  35.    ULONG cPropertySets, DBPROPSET rgPropertySets[], IUnknown **ppRowset)
  36. {
  37. CAgentRowset* pAgentRS;
  38. return CreateRowset(pUnkOuter, pTableID, pIndexID, riid, cPropertySets, rgPropertySets, ppRowset, pAgentRS);
  39. }
  40. BEGIN_PROPSET_MAP(CMyProviderSession)
  41. CHAIN_PROPERTY_SET(CMyProviderCommand)
  42. END_PROPSET_MAP()
  43. BEGIN_COM_MAP(CMyProviderSession)
  44. COM_INTERFACE_ENTRY(IGetDataSource)
  45. COM_INTERFACE_ENTRY(IOpenRowset)
  46. COM_INTERFACE_ENTRY(ISessionProperties)
  47. COM_INTERFACE_ENTRY(IObjectWithSite)
  48. COM_INTERFACE_ENTRY(IDBCreateCommand)
  49. END_COM_MAP()
  50. public:
  51. };
  52. #endif //__CMyProviderSession_H_