MySQLDlg.h
上传用户:wangfu1106
上传日期:2014-08-20
资源大小:193k
文件大小:2k
源码类别:

数据库编程

开发平台:

Visual C++

  1. // MySQLDlg.h : header file
  2. //
  3. #if !defined(AFX_MYSQLDLG_H__0F295076_86EB_4CC3_AA21_13E38A8B66F9__INCLUDED_)
  4. #define AFX_MYSQLDLG_H__0F295076_86EB_4CC3_AA21_13E38A8B66F9__INCLUDED_
  5. #if _MSC_VER > 1000
  6. #pragma once
  7. #endif // _MSC_VER > 1000
  8. #include <mysql.h>
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CMySQLDlg dialog
  11. class CMySQLDlg : public CDialog
  12. {
  13. // Construction
  14. public:
  15. CMySQLDlg(CWnd* pParent = NULL); // standard constructor
  16. void InitDatabase();
  17. // Dialog Data
  18. //{{AFX_DATA(CMySQLDlg)
  19. enum { IDD = IDD_MYSQL_DIALOG };
  20. CComboBox m_cDbName;
  21. CListCtrl m_cList;
  22. CString m_sSQL;
  23. //}}AFX_DATA
  24. // ClassWizard generated virtual function overrides
  25. //{{AFX_VIRTUAL(CMySQLDlg)
  26. protected:
  27. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  28. virtual LRESULT WindowProc(UINT message, WPARAM wParam, LPARAM lParam);
  29. //}}AFX_VIRTUAL
  30. // Implementation
  31. protected:
  32. HICON m_hIcon;
  33. /////////////////////
  34. int ColNum;
  35. CString SelDbName;
  36. //////////////////////////
  37. MYSQL *MyData;
  38. MYSQL_RES *My_Res;
  39. MYSQL_ROW My_Row;
  40. MYSQL_FIELD *My_Field;
  41. // Generated message map functions
  42. //{{AFX_MSG(CMySQLDlg)
  43. virtual BOOL OnInitDialog();
  44. afx_msg void OnPaint();
  45. afx_msg HCURSOR OnQueryDragIcon();
  46. afx_msg void OnSelect();
  47. afx_msg void OnSelchangeDbname();
  48. afx_msg void OnAbout();
  49. //}}AFX_MSG
  50. DECLARE_MESSAGE_MAP()
  51. };
  52. //{{AFX_INSERT_LOCATION}}
  53. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  54. #endif // !defined(AFX_MYSQLDLG_H__0F295076_86EB_4CC3_AA21_13E38A8B66F9__INCLUDED_)