CodeCtrlOdbcDlg.cpp
上传用户:qzzxgm
上传日期:2009-12-14
资源大小:1882k
文件大小:6k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // CodeCtrlOdbcDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "CodeCtrlOdbc.h"
  5. #include "CodeCtrlOdbcDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CAboutDlg dialog used for App About
  13. class CAboutDlg : public CDialog
  14. {
  15. public:
  16. CAboutDlg();
  17. // Dialog Data
  18. //{{AFX_DATA(CAboutDlg)
  19. enum { IDD = IDD_ABOUTBOX };
  20. //}}AFX_DATA
  21. // ClassWizard generated virtual function overrides
  22. //{{AFX_VIRTUAL(CAboutDlg)
  23. protected:
  24. virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  25. //}}AFX_VIRTUAL
  26. // Implementation
  27. protected:
  28. //{{AFX_MSG(CAboutDlg)
  29. //}}AFX_MSG
  30. DECLARE_MESSAGE_MAP()
  31. };
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34. //{{AFX_DATA_INIT(CAboutDlg)
  35. //}}AFX_DATA_INIT
  36. }
  37. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  38. {
  39. CDialog::DoDataExchange(pDX);
  40. //{{AFX_DATA_MAP(CAboutDlg)
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  44. //{{AFX_MSG_MAP(CAboutDlg)
  45. // No message handlers
  46. //}}AFX_MSG_MAP
  47. END_MESSAGE_MAP()
  48. /////////////////////////////////////////////////////////////////////////////
  49. // CCodeCtrlOdbcDlg dialog
  50. CCodeCtrlOdbcDlg::CCodeCtrlOdbcDlg(CWnd* pParent /*=NULL*/)
  51. : CDialog(CCodeCtrlOdbcDlg::IDD, pParent)
  52. {
  53. //{{AFX_DATA_INIT(CCodeCtrlOdbcDlg)
  54. m_nID = 0;
  55. m_strName = _T("");
  56. //}}AFX_DATA_INIT
  57. // Note that LoadIcon does not require a subsequent DestroyIcon in Win32
  58. m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
  59. }
  60. void CCodeCtrlOdbcDlg::DoDataExchange(CDataExchange* pDX)
  61. {
  62. CDialog::DoDataExchange(pDX);
  63. //{{AFX_DATA_MAP(CCodeCtrlOdbcDlg)
  64. DDX_Text(pDX, IDC_ID, m_nID);
  65. DDX_Text(pDX, IDC_NAME, m_strName);
  66. //}}AFX_DATA_MAP
  67. }
  68. BEGIN_MESSAGE_MAP(CCodeCtrlOdbcDlg, CDialog)
  69. //{{AFX_MSG_MAP(CCodeCtrlOdbcDlg)
  70. ON_WM_SYSCOMMAND()
  71. ON_WM_PAINT()
  72. ON_WM_QUERYDRAGICON()
  73. //}}AFX_MSG_MAP
  74. END_MESSAGE_MAP()
  75. /////////////////////////////////////////////////////////////////////////////
  76. // CCodeCtrlOdbcDlg message handlers
  77. BOOL CCodeCtrlOdbcDlg::OnInitDialog()
  78. {
  79. CDialog::OnInitDialog();
  80. // Add "About..." menu item to system menu.
  81. // IDM_ABOUTBOX must be in the system command range.
  82. ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
  83. ASSERT(IDM_ABOUTBOX < 0xF000);
  84. CMenu* pSysMenu = GetSystemMenu(FALSE);
  85. if (pSysMenu != NULL)
  86. {
  87. CString strAboutMenu;
  88. strAboutMenu.LoadString(IDS_ABOUTBOX);
  89. if (!strAboutMenu.IsEmpty())
  90. {
  91. pSysMenu->AppendMenu(MF_SEPARATOR);
  92. pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
  93. }
  94. }
  95. // Set the icon for this dialog.  The framework does this automatically
  96. //  when the application's main window is not a dialog
  97. SetIcon(m_hIcon, TRUE); // Set big icon
  98. SetIcon(m_hIcon, FALSE); // Set small icon
  99. // TODO: Add extra initialization here
  100. //注册数据源
  101. if(!LoadDbSource("students","F:\vc百例\第八章\students.mdb",""))
  102. {
  103. EndDialog(0);
  104. return FALSE;
  105. }
  106. //初始化环境
  107. ::CoInitialize(NULL);
  108. //创建并打开数据库连接对象
  109. _variant_t vFieldValue;
  110. CString strFieldValue;
  111. m_pCon.CreateInstance(__uuidof(Connection));
  112. m_pCon->Open("students","","",NULL);
  113. //创建并打开记录集对象
  114. m_pRs.CreateInstance(__uuidof(Recordset));
  115. m_pRs->Open("select* from table1",m_pCon.GetInterfacePtr(),adOpenDynamic,adLockOptimistic,adCmdText);
  116. if(VARIANT_FALSE == m_pRs->EndOfFile)
  117.     {
  118. //获得第一条记录并显示
  119. vFieldValue = m_pRs->GetCollect("id");
  120. strFieldValue = (char*)_bstr_t(vFieldValue);
  121. m_nID = atoi(strFieldValue.GetBuffer(0));;
  122. vFieldValue.Clear();
  123. vFieldValue = m_pRs->GetCollect("name");
  124. strFieldValue = (char*)_bstr_t(vFieldValue);
  125. m_strName = strFieldValue;
  126. vFieldValue.Clear();
  127.     }
  128. UpdateData(FALSE);
  129. return TRUE;  // return TRUE  unless you set the focus to a control
  130. }
  131. void CCodeCtrlOdbcDlg::OnSysCommand(UINT nID, LPARAM lParam)
  132. {
  133. if ((nID & 0xFFF0) == IDM_ABOUTBOX)
  134. {
  135. CAboutDlg dlgAbout;
  136. dlgAbout.DoModal();
  137. }
  138. else
  139. {
  140. CDialog::OnSysCommand(nID, lParam);
  141. }
  142. }
  143. // If you add a minimize button to your dialog, you will need the code below
  144. //  to draw the icon.  For MFC applications using the document/view model,
  145. //  this is automatically done for you by the framework.
  146. void CCodeCtrlOdbcDlg::OnPaint() 
  147. {
  148. if (IsIconic())
  149. {
  150. CPaintDC dc(this); // device context for painting
  151. SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);
  152. // Center icon in client rectangle
  153. int cxIcon = GetSystemMetrics(SM_CXICON);
  154. int cyIcon = GetSystemMetrics(SM_CYICON);
  155. CRect rect;
  156. GetClientRect(&rect);
  157. int x = (rect.Width() - cxIcon + 1) / 2;
  158. int y = (rect.Height() - cyIcon + 1) / 2;
  159. // Draw the icon
  160. dc.DrawIcon(x, y, m_hIcon);
  161. }
  162. else
  163. {
  164. CDialog::OnPaint();
  165. }
  166. }
  167. // The system calls this to obtain the cursor to display while the user drags
  168. //  the minimized window.
  169. HCURSOR CCodeCtrlOdbcDlg::OnQueryDragIcon()
  170. {
  171. return (HCURSOR) m_hIcon;
  172. }
  173. BOOL CCodeCtrlOdbcDlg::LoadDbSource(
  174. CString strSourceName, //数据源名
  175. CString strSourceDb, //数据库存放路径
  176. CString strDescription //数据源描述字符串
  177. )
  178. {
  179. HKEY hKey;
  180. DWORD lDisp; 
  181. //注册数据源名
  182. CString strSubKey="SOFTWARE\ODBC\ODBC.INI\"+strSourceName;
  183. RegCreateKeyEx(HKEY_CURRENT_USER,
  184. strSubKey,
  185. 0,
  186. NULL,
  187. REG_OPTION_NON_VOLATILE,
  188. KEY_ALL_ACCESS,
  189. NULL,
  190. &hKey,
  191. &lDisp);
  192. //注册ODBC驱动程序
  193. CString value1("C:\WINNT\System32\odbcjt32.dll");
  194. RegSetValueEx(hKey,
  195. "Driver",
  196. 0,
  197. REG_SZ,
  198. (const unsigned char *)((LPCTSTR)value1),
  199. strlen((LPCTSTR)value1)+1);
  200. //注册数据库文件
  201. CString value2 = strSourceDb;
  202. RegSetValueEx(hKey,
  203. "DBQ",
  204. 0,
  205. REG_SZ,
  206. (const unsigned char *)((LPCTSTR)value2),
  207. strlen((LPCTSTR)value2)+1);
  208. DWORD value3=(DWORD)25;
  209. RegSetValueEx(hKey,
  210. "DriverID",
  211. 0,
  212. REG_DWORD,
  213. (const BYTE *)&value3,
  214. sizeof(DWORD));
  215. CString value4("Ms Access");
  216. RegSetValueEx(hKey,
  217. "FIL",
  218. 0,
  219. REG_SZ,
  220. (const unsigned char *)((LPCTSTR)value4),
  221. strlen((LPCTSTR)value4)+1);
  222. DWORD value5=(DWORD)0;
  223. RegSetValueEx(hKey,
  224. "SafeTransactions",
  225. 0,
  226. REG_DWORD,
  227. (const BYTE *)&value5,
  228. sizeof(DWORD));
  229. CString value6("");
  230. RegSetValueEx(hKey,
  231. "UID",
  232. 0,
  233. REG_SZ,
  234. (const unsigned char *)((LPCTSTR)value6),
  235. strlen((LPCTSTR)value6)+1);
  236. return TRUE;
  237. }