亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? msado15.tli

?? 小巧閱讀器: MFC+ACCESS 簡單的查詢,以滾動形式顯示文字.需要自己向數據庫中加入數據,以關鍵詞查詢內容.
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (ea61aaa1).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\program files\common files\system\ado\msado15.dll
// compiler-generated file created 08/28/08 at 08:20:24 - DO NOT EDIT!

#pragma once

//
// interface _Collection wrapper method implementations
//

inline long _Collection::GetCount ( ) {
    long _result;
    HRESULT _hr = get_Count(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline IUnknownPtr _Collection::_NewEnum ( ) {
    IUnknown * _result;
    HRESULT _hr = raw__NewEnum(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return IUnknownPtr(_result, false);
}

inline HRESULT _Collection::Refresh ( ) {
    HRESULT _hr = raw_Refresh();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

//
// interface _DynaCollection wrapper method implementations
//

inline HRESULT _DynaCollection::Append ( IDispatch * Object ) {
    HRESULT _hr = raw_Append(Object);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT _DynaCollection::Delete ( const _variant_t & Index ) {
    HRESULT _hr = raw_Delete(Index);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

//
// interface _ADO wrapper method implementations
//

inline PropertiesPtr _ADO::GetProperties ( ) {
    struct Properties * _result;
    HRESULT _hr = get_Properties(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return PropertiesPtr(_result, false);
}

//
// interface Properties wrapper method implementations
//

inline PropertyPtr Properties::GetItem ( const _variant_t & Index ) {
    struct Property * _result;
    HRESULT _hr = get_Item(Index, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return PropertyPtr(_result, false);
}

//
// interface Property wrapper method implementations
//

inline _variant_t Property::GetValue ( ) {
    VARIANT _result;
    VariantInit(&_result);
    HRESULT _hr = get_Value(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _variant_t(_result, false);
}

inline void Property::PutValue ( const _variant_t & pval ) {
    HRESULT _hr = put_Value(pval);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _bstr_t Property::GetName ( ) {
    BSTR _result;
    HRESULT _hr = get_Name(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline enum DataTypeEnum Property::GetType ( ) {
    enum DataTypeEnum _result;
    HRESULT _hr = get_Type(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline long Property::GetAttributes ( ) {
    long _result;
    HRESULT _hr = get_Attributes(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Property::PutAttributes ( long plAttributes ) {
    HRESULT _hr = put_Attributes(plAttributes);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

//
// interface Error wrapper method implementations
//

inline long Error::GetNumber ( ) {
    long _result;
    HRESULT _hr = get_Number(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline _bstr_t Error::GetSource ( ) {
    BSTR _result;
    HRESULT _hr = get_Source(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline _bstr_t Error::GetDescription ( ) {
    BSTR _result;
    HRESULT _hr = get_Description(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline _bstr_t Error::GetHelpFile ( ) {
    BSTR _result;
    HRESULT _hr = get_HelpFile(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline long Error::GetHelpContext ( ) {
    long _result;
    HRESULT _hr = get_HelpContext(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline _bstr_t Error::GetSQLState ( ) {
    BSTR _result;
    HRESULT _hr = get_SQLState(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline long Error::GetNativeError ( ) {
    long _result;
    HRESULT _hr = get_NativeError(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

//
// interface Errors wrapper method implementations
//

inline ErrorPtr Errors::GetItem ( const _variant_t & Index ) {
    struct Error * _result;
    HRESULT _hr = get_Item(Index, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return ErrorPtr(_result, false);
}

inline HRESULT Errors::Clear ( ) {
    HRESULT _hr = raw_Clear();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

//
// interface Command15 wrapper method implementations
//

inline _ConnectionPtr Command15::GetActiveConnection ( ) {
    struct _Connection * _result;
    HRESULT _hr = get_ActiveConnection(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _ConnectionPtr(_result, false);
}

inline void Command15::PutRefActiveConnection ( struct _Connection * ppvObject ) {
    HRESULT _hr = putref_ActiveConnection(ppvObject);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline void Command15::PutActiveConnection ( const _variant_t & ppvObject ) {
    HRESULT _hr = put_ActiveConnection(ppvObject);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _bstr_t Command15::GetCommandText ( ) {
    BSTR _result;
    HRESULT _hr = get_CommandText(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline void Command15::PutCommandText ( _bstr_t pbstr ) {
    HRESULT _hr = put_CommandText(pbstr);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline long Command15::GetCommandTimeout ( ) {
    long _result;
    HRESULT _hr = get_CommandTimeout(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Command15::PutCommandTimeout ( long pl ) {
    HRESULT _hr = put_CommandTimeout(pl);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline VARIANT_BOOL Command15::GetPrepared ( ) {
    VARIANT_BOOL _result;
    HRESULT _hr = get_Prepared(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Command15::PutPrepared ( VARIANT_BOOL pfPrepared ) {
    HRESULT _hr = put_Prepared(pfPrepared);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _RecordsetPtr Command15::Execute ( VARIANT * RecordsAffected, VARIANT * Parameters, long Options ) {
    struct _Recordset * _result;
    HRESULT _hr = raw_Execute(RecordsAffected, Parameters, Options, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _RecordsetPtr(_result, false);
}

inline _ParameterPtr Command15::CreateParameter ( _bstr_t Name, enum DataTypeEnum Type, enum ParameterDirectionEnum Direction, ADO_LONGPTR Size, const _variant_t & Value ) {
    struct _Parameter * _result;
    HRESULT _hr = raw_CreateParameter(Name, Type, Direction, Size, Value, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _ParameterPtr(_result, false);
}

inline ParametersPtr Command15::GetParameters ( ) {
    struct Parameters * _result;
    HRESULT _hr = get_Parameters(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return ParametersPtr(_result, false);
}

inline void Command15::PutCommandType ( enum CommandTypeEnum plCmdType ) {
    HRESULT _hr = put_CommandType(plCmdType);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline enum CommandTypeEnum Command15::GetCommandType ( ) {
    enum CommandTypeEnum _result;
    HRESULT _hr = get_CommandType(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline _bstr_t Command15::GetName ( ) {
    BSTR _result;
    HRESULT _hr = get_Name(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline void Command15::PutName ( _bstr_t pbstrName ) {
    HRESULT _hr = put_Name(pbstrName);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

//
// interface Connection15 wrapper method implementations
//

inline _bstr_t Connection15::GetConnectionString ( ) {
    BSTR _result;
    HRESULT _hr = get_ConnectionString(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline void Connection15::PutConnectionString ( _bstr_t pbstr ) {
    HRESULT _hr = put_ConnectionString(pbstr);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline long Connection15::GetCommandTimeout ( ) {
    long _result;
    HRESULT _hr = get_CommandTimeout(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Connection15::PutCommandTimeout ( long plTimeout ) {
    HRESULT _hr = put_CommandTimeout(plTimeout);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline long Connection15::GetConnectionTimeout ( ) {
    long _result;
    HRESULT _hr = get_ConnectionTimeout(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Connection15::PutConnectionTimeout ( long plTimeout ) {
    HRESULT _hr = put_ConnectionTimeout(plTimeout);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _bstr_t Connection15::GetVersion ( ) {
    BSTR _result;
    HRESULT _hr = get_Version(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline HRESULT Connection15::Close ( ) {
    HRESULT _hr = raw_Close();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline _RecordsetPtr Connection15::Execute ( _bstr_t CommandText, VARIANT * RecordsAffected, long Options ) {
    struct _Recordset * _result;
    HRESULT _hr = raw_Execute(CommandText, RecordsAffected, Options, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _RecordsetPtr(_result, false);
}

inline long Connection15::BeginTrans ( ) {
    long _result;
    HRESULT _hr = raw_BeginTrans(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline HRESULT Connection15::CommitTrans ( ) {
    HRESULT _hr = raw_CommitTrans();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
在线观看成人小视频| 日韩av中文在线观看| 国产不卡在线播放| 日韩欧美久久久| 国产一区久久久| 国产精品免费视频观看| 成人app网站| 亚洲免费在线电影| 欧美军同video69gay| 美国一区二区三区在线播放| 日韩免费观看2025年上映的电影 | 欧美疯狂做受xxxx富婆| 日韩黄色小视频| 久久久精品蜜桃| 91尤物视频在线观看| 亚洲国产日韩精品| 日韩三区在线观看| 成人免费的视频| 首页国产丝袜综合| 久久精品日产第一区二区三区高清版| 99re在线视频这里只有精品| 亚洲成a人片在线不卡一二三区| 欧美一区二区在线免费播放| 国产久卡久卡久卡久卡视频精品| 国产精品伦理在线| 欧美性大战久久久| 国产一区二区女| 亚洲乱码国产乱码精品精小说 | 欧美精品乱人伦久久久久久| 国产在线视频精品一区| 一级中文字幕一区二区| 欧美一级二级在线观看| 国产91精品露脸国语对白| 夜夜嗨av一区二区三区| 久久久一区二区三区| 欧美人狂配大交3d怪物一区| 成人午夜在线播放| 日本亚洲视频在线| 亚洲私人影院在线观看| 日韩精品自拍偷拍| 欧美午夜理伦三级在线观看| 成人性生交大片| 蜜臀va亚洲va欧美va天堂| 亚洲天堂成人网| 精品国产凹凸成av人导航| 日韩av一级片| 有码一区二区三区| 五月天激情综合网| 中文字幕欧美日韩一区| 欧美一区二区三区视频在线观看| 精品国产乱码久久久久久久| 色综合天天狠狠| 久久精品国产亚洲高清剧情介绍 | 亚洲精品一区二区三区在线观看| 99视频有精品| 国产精品亚洲成人| 美女久久久精品| 亚洲成人第一页| 亚洲人亚洲人成电影网站色| 国产午夜精品一区二区三区嫩草 | 全国精品久久少妇| 91高清视频在线| 日本一区二区久久| 欧美一区二区三区免费在线看| 99精品国产热久久91蜜凸| 国产精品自拍网站| 日韩精品色哟哟| 亚洲欧美国产77777| 国产精品久久久久久久久图文区 | 成人免费视频播放| 国产麻豆精品在线观看| 久久国产生活片100| 毛片不卡一区二区| 男女男精品网站| 免费一区二区视频| 麻豆精品一二三| 麻豆精品一区二区综合av| 久久狠狠亚洲综合| 国内外精品视频| 欧美日韩精品电影| 欧美午夜不卡在线观看免费| 在线观看免费一区| 色8久久精品久久久久久蜜| 色噜噜狠狠成人网p站| 91网页版在线| 欧美主播一区二区三区| 欧美视频在线一区| 欧美久久久久久蜜桃| 欧美日本一区二区| 91精品一区二区三区久久久久久| 6080午夜不卡| 欧美成人精精品一区二区频| 久久影音资源网| 亚洲国产精品成人综合| 最新国产の精品合集bt伙计| 自拍偷拍欧美精品| 亚洲韩国精品一区| 欧美a级一区二区| 国产成人精品午夜视频免费| 成人av在线网站| 欧美色国产精品| 欧美精品一区二区三区高清aⅴ| 久久天天做天天爱综合色| 国产欧美日韩在线视频| 一区在线观看免费| 亚洲午夜私人影院| 国内外成人在线视频| proumb性欧美在线观看| 欧美日韩一区二区三区免费看| 日韩欧美不卡一区| 国产精品视频一二三| 亚洲综合一区二区| 加勒比av一区二区| 91在线视频观看| 69堂成人精品免费视频| 国产精品美女视频| 亚洲v中文字幕| 国产在线乱码一区二区三区| 色综合久久久久久久久久久| 欧美高清hd18日本| 成人免费在线播放视频| 美女视频黄 久久| 97久久精品人人做人人爽50路| 欧美午夜精品久久久久久孕妇| 久久精品一区四区| 亚洲国产视频在线| 国产91丝袜在线播放九色| 欧美三级电影一区| 国产日韩av一区| 男男视频亚洲欧美| 欧洲精品在线观看| 亚洲chinese男男1069| 国产一区在线看| 欧美日韩国产乱码电影| 国产精品乱码一区二区三区软件| 婷婷一区二区三区| 91麻豆国产精品久久| 精品国产污污免费网站入口| 一区二区三区 在线观看视频| 韩国v欧美v日本v亚洲v| 欧美军同video69gay| 亚洲乱码国产乱码精品精98午夜 | 国内精品自线一区二区三区视频| 色综合久久88色综合天天免费| 日韩一区二区三区在线观看| 亚洲欧美日韩国产综合| 成人午夜短视频| 久久亚洲二区三区| 美女视频黄a大片欧美| 欧美日韩一区二区在线观看| 中文字幕亚洲区| 成人一级黄色片| 日本一区二区三区dvd视频在线| 日本特黄久久久高潮| 欧美午夜理伦三级在线观看| 亚洲欧美另类久久久精品2019| 不卡av在线网| 中文成人av在线| 国产伦精品一区二区三区在线观看| 欧美一级日韩不卡播放免费| 亚洲午夜免费视频| 欧美性大战久久久久久久| 亚洲美女在线一区| 不卡的电视剧免费网站有什么| 欧美国产成人在线| 国产成人精品亚洲日本在线桃色| 久久久五月婷婷| 国产一区二区三区日韩| wwww国产精品欧美| 精品一二线国产| 久久综合久久综合亚洲| 精品中文av资源站在线观看| 日韩精品一区二区三区老鸭窝| 久久国产人妖系列| 精品成人一区二区三区| 激情五月播播久久久精品| 日韩免费成人网| 国产福利一区二区| 中文字幕欧美三区| eeuss鲁片一区二区三区| 亚洲免费视频中文字幕| 欧洲一区二区三区在线| 午夜影院在线观看欧美| 91精品视频网| 久久av资源站| 亚洲国产精品99久久久久久久久 | 欧美日韩一区在线| 日韩精品电影在线观看| 欧美大片在线观看一区| 国产伦理精品不卡| 亚洲欧洲成人av每日更新| 色老头久久综合| 免费看欧美美女黄的网站| 欧美精品一区二区久久久| 日韩天堂在线观看| 欧美一区二区三区免费大片 | 欧美日韩午夜影院| 成人综合婷婷国产精品久久蜜臀| 国产成人精品午夜视频免费 | 一区二区久久久|