access_ip2.cpp
上传用户:gelin96
上传日期:2017-01-08
资源大小:20993k
文件大小:2k
源码类别:

MTK

开发平台:

C++ Builder

  1. /*****************************************************************************
  2. *  Copyright Statement:
  3. *  --------------------
  4. *  This software is protected by Copyright and the information contained
  5. *  herein is confidential. The software may not be copied and the information
  6. *  contained herein may not be used or disclosed except with the written
  7. *  permission of MediaTek Inc. (C) 2001
  8. *
  9. *****************************************************************************/
  10. /*****************************************************************************
  11.  *
  12.  * Filename:
  13.  * ---------
  14.  *   access_ip2.cpp
  15.  *
  16.  * Project:
  17.  * --------
  18.  *   Maui META APP
  19.  *
  20.  * Description:
  21.  * ------------
  22.  *   IP2 calibration export to Microsoft Access source
  23.  *
  24.  * Author:
  25.  * -------
  26.  *  Andy Ueng (mtk00490)
  27.  *
  28.  *============================================================================
  29.  *             HISTORY
  30.  * Below this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  31.  *------------------------------------------------------------------------------
  32.  * $Revision$
  33.  * $Modtime$
  34.  * $Log$
  35.  * 
  36.  *------------------------------------------------------------------------------
  37.  * Upper this line, this part is controlled by PVCS VM. DO NOT MODIFY!!
  38.  *============================================================================
  39.  ****************************************************************************/
  40. #include <IniFiles.hpp>
  41. #pragma hdrstop
  42. #ifndef  _ACCESS_IP2_H_
  43. #include "access_ip2.h"
  44. #endif
  45. //===========================================================================
  46. //===========================================================================
  47. CACCESSIP2::CACCESSIP2( void )
  48. {
  49. }
  50. //---------------------------------------------------------------------------
  51. CACCESSIP2::~CACCESSIP2( )
  52. {
  53. }
  54. //------------------------------------------------------------------------------
  55. void CACCESSIP2::SetTabNameToIP2_PARAMETERS( TADOTable *p_ADOTab, AnsiString as_tabname )
  56. {
  57.     p_ADOTab->Active = false;
  58.     p_ADOTab->TableName = "IP2_PARAMETERS";
  59.     p_ADOTab->Active = true;
  60. }
  61. //----------------------------------------------------------------------------
  62. void CACCESSIP2::PostRecordToAccess( TADOTable *p_ADOTab )
  63. {
  64.     p_ADOTab->Post();
  65. }