ADODatabase.cpp 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #include "StdAfx.h"
  2. #include "ADODatabase.h"
  3. BOOL CADODatabase::Execute(LPCTSTR lpstrExec)
  4. {
  5. ASSERT(m_pConnection != NULL);
  6. ASSERT(strcmp(lpstrExec, _T("")) != 0);
  7. try
  8. {
  9. m_pConnection->CursorLocation = adUseClient;
  10. m_pConnection->Execute(_bstr_t(lpstrExec), NULL, adExecuteNoRecords);
  11. return TRUE;
  12. }
  13. catch(_com_error &e)
  14. {
  15. dump_com_error(e);
  16. return FALSE;
  17. }
  18. }
  19. DWORD CADODatabase::GetRecordCount(_RecordsetPtr m_pRs)
  20. {
  21. DWORD numRows = 0;
  22. numRows = m_pRs->GetRecordCount();
  23. if(numRows == -1)
  24. {
  25. if(m_pRs->EndOfFile != VARIANT_TRUE)
  26. m_pRs->MoveFirst();
  27. while(m_pRs->EndOfFile != VARIANT_TRUE)
  28. {
  29. numRows++;
  30. m_pRs->MoveNext();
  31. }
  32. if(numRows > 0)
  33. m_pRs->MoveFirst();
  34. }
  35. return numRows;
  36. }
  37. BOOL CADODatabase::Open(LPCTSTR lpstrConnection, LPCTSTR lpstrUserID, LPCTSTR lpstrPassword)
  38. {
  39. HRESULT hr = S_OK;
  40. if(IsOpen())
  41. Close();
  42. if(strcmp(lpstrConnection, _T("")) != 0)
  43. m_strConnection = lpstrConnection;
  44. ASSERT(!m_strConnection.IsEmpty());
  45. try
  46. {
  47. hr = m_pConnection->Open(_bstr_t(m_strConnection), _bstr_t(lpstrUserID), _bstr_t(lpstrPassword), NULL);
  48. //BOOL bResult = FALSE;
  49. //if(S_OK == hr)
  50. //{
  51. // return bResult = TRUE;
  52. //}
  53. return S_OK == hr;
  54. }
  55. catch(_com_error &e)
  56. {
  57. dump_com_error(e);
  58. return FALSE;
  59. }
  60. }
  61. void CADODatabase::dump_com_error(_com_error &e)
  62. {
  63. CString ErrorStr;
  64. _bstr_t bstrSource(e.Source());
  65. _bstr_t bstrDescription(e.Description());
  66. ErrorStr.Format( "CADODataBase Error\n\tCode = %08lx\n\tCode meaning = %s\n\tSource = %s\n\tDescription = %s\n",
  67. e.Error(), e.ErrorMessage(), (LPCSTR)bstrSource, (LPCSTR)bstrDescription );
  68. m_strLastError = _T("Connection String = " + GetConnectionString() + '\n' + ErrorStr);
  69. m_dwLastError = e.Error();
  70. #ifdef _DEBUG
  71. AfxMessageBox( ErrorStr, MB_OK | MB_ICONERROR );
  72. #endif
  73. WriteTextLog(_T("´íÎó£º%s"), m_strLastError);
  74. }
  75. BOOL CADODatabase::IsOpen()
  76. {
  77. if(m_pConnection )
  78. return m_pConnection->GetState() != adStateClosed;
  79. return FALSE;
  80. }
  81. void CADODatabase::Close()
  82. {
  83. if(IsOpen())
  84. m_pConnection->Close();
  85. }