⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 axcontactcmdorg.hpp

📁 一个非常好用的ADO封装类,程序员不再需要跟烦人的COM接口打交道,写数据库程序不再麻烦!
💻 HPP
字号:
/**************************************************************************
    File: AxContactCmd.hpp
    Date: 10/16/2007
      By: Data Management Systems (www.dmsic.com)

    DESCRIPTION
    The following source code was generated using the AxGen utility and is
    intended to be used in conjunction with the dbAx library. This class
    enables access to stored procedures of the data provider from which it
    was derived.

    Stored Proc: (local)\CardFile\get_Contacts

    Include this file in your project.

    DISCLAIMER
    This source code is provided AS-IS with no warranty as to its
    suitability or usefulness in any application in which it may be used.
**************************************************************************/
#pragma once
#include <AxLib.h>

using namespace dbAx;

class CAxContactCmd :
    public CAxCommand
{
public:
  CAxContactCmd() { }
  ~CAxContactCmd() { }

  //Attributes
  CString   m_szAccntIDParam;

  //Create command parameters
  void _CreateParameters()
  {
    ADOParameter *pParam;

    pParam = CreateParameter(_T("AccntID"), adVarChar, adParamInput, 50,
      &_variant_t((LPCTSTR) m_szAccntIDParam));

  };

  //Update command parameters
  void _UpdateParameters()
  {
    _SetParamValue(_T("AccntID"), &_variant_t((LPCTSTR) m_szAccntIDParam));
  };
};

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -