Leaked source code of windows server 2003
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1022 B

  1. // ReportStopCodeSolutions.h : Declaration of the CReportStopCodeSolutions
  2. #pragma once
  3. [
  4. db_source(L"Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=KaCustomer;Data Source=TIMRAGAIN04\\TIMRAGAIN04;Use Procedure for Prepare=1;Auto Translate=True;Packet Size=4096;Workstation ID=TIMRAGAIN05;Use Encryption for Data=False;Tag with column collation when possible=False"),
  5. db_command(L"{ ? = CALL dbo.ReportGetHelpInfo(?) }")
  6. ]
  7. class CReportHelpInfoSolutions
  8. {
  9. public:
  10. [ db_column(1, status=m_dwCountStatus, length=m_dwCountLength) ] LONG m_Count;
  11. DBSTATUS m_dwCountStatus;
  12. DBLENGTH m_dwCountLength;
  13. [ db_param(1, DBPARAMIO_OUTPUT) ] LONG m_RETURN_VALUE;
  14. [ db_param(2, DBPARAMIO_INPUT) ] DBTIMESTAMP m_ReportDate;
  15. void GetRowsetProperties(CDBPropSet* pPropSet)
  16. {
  17. pPropSet->AddProperty(DBPROP_CANFETCHBACKWARDS, true, DBPROPOPTIONS_OPTIONAL);
  18. pPropSet->AddProperty(DBPROP_CANSCROLLBACKWARDS, true, DBPROPOPTIONS_OPTIONAL);
  19. }
  20. };