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

书籍源码

开发平台:

Visual C++

  1. // OLAPConsumerSet.h : interface of the COLAPConsumerSet class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_OLAPCONSUMERSET_H__FE946BEE_CAEF_11D2_9949_C761AB69F945__INCLUDED_)
  5. #define AFX_OLAPCONSUMERSET_H__FE946BEE_CAEF_11D2_9949_C761AB69F945__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif // _MSC_VER > 1000
  9. class CDepartment
  10. {
  11. public:
  12. CDepartment()
  13. {
  14. memset( (void*)this, 0, sizeof(*this) );
  15. };
  16. char m_Student[51];
  17. char m_DepartmentCode[5];
  18. int m_Year;
  19. int m_Average;
  20. BEGIN_COLUMN_MAP(CDepartment)
  21. COLUMN_ENTRY_TYPE(1, DBTYPE_STR, m_Student)
  22. COLUMN_ENTRY_TYPE(2, DBTYPE_STR, m_DepartmentCode)
  23. COLUMN_ENTRY_TYPE(3, DBTYPE_I2, m_Year)
  24. COLUMN_ENTRY_TYPE(4, DBTYPE_I2, m_Average)
  25. END_COLUMN_MAP()
  26. };
  27. class COLAPConsumerSet : public CCommand<CAccessor<CDepartment> >
  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_PERSIST_SENSITIVE_AUTHINFO, false);
  37. dbinit.AddProperty(DBPROP_INIT_DATASOURCE, "Classes");
  38. dbinit.AddProperty(DBPROP_INIT_PROMPT, (short)4);
  39. dbinit.AddProperty(DBPROP_INIT_LCID, (long)1033);
  40. hr = db.OpenWithServiceComponents("OracleExpressProvider.1", &dbinit);
  41. if (FAILED(hr))
  42. return hr;
  43. hr = session.Open(db);
  44. if (FAILED(hr))
  45. return hr;
  46. CDBPropSet propset(DBPROPSET_ROWSET);
  47. propset.AddProperty(DBPROP_CANFETCHBACKWARDS, true);
  48. propset.AddProperty(DBPROP_IRowsetScroll, true);
  49. char *oracleExpressSyntax = "
  50. LIMIT student TO 'Charles A. Wood' 
  51. LIMIT section BASED ON Year 
  52. REPORT DOWN Section.Department, Section.Year";
  53. hr = CCommand<CAccessor<CDepartment> >::Open(
  54. session, oracleExpressSyntax, &propset);
  55. if (FAILED(hr))
  56. return hr;
  57. return MoveNext();
  58. }
  59. };
  60. //{{AFX_INSERT_LOCATION}}
  61. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  62. #endif // !defined(AFX_OLAPCONSUMERSET_H__FE946BEE_CAEF_11D2_9949_C761AB69F945__INCLUDED_)