NdbOdbc.cpp
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2003 MySQL AB
  2.    This program is free software; you can redistribute it and/or modify
  3.    it under the terms of the GNU General Public License as published by
  4.    the Free Software Foundation; either version 2 of the License, or
  5.    (at your option) any later version.
  6.    This program is distributed in the hope that it will be useful,
  7.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  8.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  9.    GNU General Public License for more details.
  10.    You should have received a copy of the GNU General Public License
  11.    along with this program; if not, write to the Free Software
  12.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  13. #include <NdbUnistd.h>
  14. #include <odbcinst.h>
  15. #include "driver.cpp"
  16. BOOL APIENTRY DllMain( HANDLE hModule, 
  17.                        DWORD  ul_reason_for_call, 
  18.                        LPVOID lpReserved
  19.  )
  20. {
  21. switch (ul_reason_for_call)
  22. {
  23. case DLL_PROCESS_ATTACH:
  24. case DLL_THREAD_ATTACH:
  25. case DLL_THREAD_DETACH:
  26. case DLL_PROCESS_DETACH:
  27. break;
  28. }
  29.     return TRUE;
  30. }
  31. BOOL INSTAPI ConfigDSN(
  32.      HWND     hwndParent,
  33.      WORD     fRequest,
  34.      LPCSTR     lpszDriver,
  35.      LPCSTR     lpszAttributes)
  36. {
  37. const char* szDSN = "NDB";
  38. switch(fRequest)
  39. {
  40. case ODBC_ADD_DSN: 
  41. SQLWriteDSNToIni(szDSN, lpszDriver);
  42. break;
  43. case ODBC_CONFIG_DSN:
  44. break;
  45. case ODBC_REMOVE_DSN:
  46. SQLRemoveDSNFromIni(szDSN);
  47. break;
  48. }
  49. return TRUE;
  50. }
  51. int FAR PASCAL
  52. DriverConnectProc(HWND hdlg, WORD wMsg, WPARAM wParam, LPARAM lParam)
  53. {
  54.   return FALSE;
  55. }
  56. void __declspec( dllexport) FAR PASCAL LoadByOrdinal(void);
  57. /* Entry point to cause DM to load using ordinals */
  58. void __declspec( dllexport) FAR PASCAL LoadByOrdinal(void)
  59. {
  60. }