one.cpp 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. // one.cpp : Defines the class behaviors for the application.
  2. //
  3. #include "stdafx.h"
  4. #include "one.h"
  5. #include "oneDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // COneApp
  13. BEGIN_MESSAGE_MAP(COneApp, CWinApp)
  14. //{{AFX_MSG_MAP(COneApp)
  15. // NOTE - the ClassWizard will add and remove mapping macros here.
  16. // DO NOT EDIT what you see in these blocks of generated code!
  17. //}}AFX_MSG
  18. ON_COMMAND(ID_HELP, CWinApp::OnHelp)
  19. END_MESSAGE_MAP()
  20. /////////////////////////////////////////////////////////////////////////////
  21. // COneApp construction
  22. COneApp::COneApp()
  23. {
  24. // TODO: add construction code here,
  25. // Place all significant initialization in InitInstance
  26. }
  27. /////////////////////////////////////////////////////////////////////////////
  28. // The one and only COneApp object
  29. COneApp theApp;
  30. /////////////////////////////////////////////////////////////////////////////
  31. // COneApp initialization
  32. BOOL COneApp::InitInstance()
  33. {
  34. AfxEnableControlContainer();
  35. AfxOleInit();//james
  36. //////////////////////james
  37. HRESULT hr;
  38. try
  39. {
  40. hr = m_pConnection.CreateInstance("ADODB.Connection");///创建Connection对象
  41. if(SUCCEEDED(hr))
  42. {
  43. hr = m_pConnection->Open("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=test.mdb","","",adModeUnknown);///连接数据库
  44. ///上面一句中连接字串中的Provider是针对ACCESS2000环境的,对于ACCESS97,需要改为:Provider=Microsoft.Jet.OLEDB.3.51;
  45. }
  46. }
  47. catch(_com_error e)///捕捉异常
  48. {
  49. CString errormessage;
  50. errormessage.Format("连接数据库失败!\r\n错误信息:%s",e.ErrorMessage());
  51. AfxMessageBox(errormessage);///显示错误信息
  52. }
  53. /////////////////////james
  54. // Standard initialization
  55. // If you are not using these features and wish to reduce the size
  56. // of your final executable, you should remove from the following
  57. // the specific initialization routines you do not need.
  58. #ifdef _AFXDLL
  59. Enable3dControls(); // Call this when using MFC in a shared DLL
  60. #else
  61. Enable3dControlsStatic(); // Call this when linking to MFC statically
  62. #endif
  63. COneDlg dlg;
  64. m_pMainWnd = &dlg;
  65. int nResponse = dlg.DoModal();
  66. if (nResponse == IDOK)
  67. {
  68. // TODO: Place code here to handle when the dialog is
  69. // dismissed with OK
  70. }
  71. else if (nResponse == IDCANCEL)
  72. {
  73. // TODO: Place code here to handle when the dialog is
  74. // dismissed with Cancel
  75. }
  76. // Since the dialog has been closed, return FALSE so that we exit the
  77. // application, rather than start the application's message pump.
  78. return FALSE;
  79. }
  80. int COneApp::ExitInstance()
  81. {
  82. // TODO: Add your specialized code here and/or call the base class
  83. if(m_pConnection->State) /////////james
  84. m_pConnection->Close();
  85. return CWinApp::ExitInstance();
  86. }