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

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

?? msado15.tli

?? VC中使用ado連接數據庫小實例
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (5cc2e2ac).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 03/18/09 at 18:52:13 - 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一区二区三区免费野_久草精品视频
午夜视频一区在线观看| 亚洲男人电影天堂| 91色porny在线视频| 日本一不卡视频| 最新久久zyz资源站| 欧美一二三区精品| 色综合激情五月| 韩国视频一区二区| 亚洲观看高清完整版在线观看| 精品国产123| 欧美另类久久久品| 91女人视频在线观看| 经典一区二区三区| 首页国产欧美日韩丝袜| 综合自拍亚洲综合图不卡区| 久久久久久影视| 欧美精品xxxxbbbb| 色猫猫国产区一区二在线视频| 国内一区二区在线| 热久久免费视频| 亚洲一区二区五区| 亚洲欧美一区二区不卡| 久久久久久黄色| 日韩精品中午字幕| 欧美日韩国产天堂| 日本大香伊一区二区三区| 成人黄色国产精品网站大全在线免费观看 | 7777精品伊人久久久大香线蕉的| 99久久综合国产精品| 国产黄色精品网站| 国产一区二区在线看| 久久精品国产亚洲高清剧情介绍| 亚洲图片欧美综合| 亚洲综合在线五月| 一区二区在线观看免费| 亚洲欧美日韩国产手机在线| 国产精品女主播在线观看| 国产日韩欧美电影| 国产日韩欧美精品一区| 欧美国产丝袜视频| 国产欧美精品在线观看| 欧美激情在线免费观看| 欧美高清在线一区二区| 中文字幕不卡在线| 国产精品日韩成人| 亚洲欧美一区二区视频| 国产精品国产三级国产aⅴ中文| 久久久久国产成人精品亚洲午夜| 久久亚洲二区三区| 国产免费观看久久| 成人欧美一区二区三区1314| 中文字幕在线视频一区| 亚洲视频在线一区二区| 一区二区三区小说| 亚洲综合一二区| 午夜伦欧美伦电影理论片| 日韩中文字幕一区二区三区| 日韩成人一级片| 久久97超碰色| 成人免费视频免费观看| 色噜噜狠狠成人网p站| 欧美老女人第四色| 精品国产不卡一区二区三区| 日本vs亚洲vs韩国一区三区 | 欧美精品在线视频| 4438x亚洲最大成人网| 欧美一区二区三区影视| 欧美r级在线观看| 久久精品网站免费观看| 亚洲欧美国产77777| 亚洲国产美女搞黄色| 麻豆精品国产传媒mv男同| 国产剧情一区二区| 一本大道久久精品懂色aⅴ| 欧美一区二区在线播放| 久久亚洲精精品中文字幕早川悠里| 亚洲国产成人一区二区三区| 一区二区在线观看免费视频播放| 日本不卡视频在线| 白白色 亚洲乱淫| 欧美天堂一区二区三区| 欧美成人猛片aaaaaaa| 亚洲国产经典视频| 天天操天天综合网| 成人一区二区视频| 欧美日韩不卡视频| 日本一区二区免费在线观看视频 | 青草av.久久免费一区| 成人av影院在线| 69久久99精品久久久久婷婷| 国产精品欧美久久久久无广告| 天堂va蜜桃一区二区三区漫画版| 国产美女精品在线| 欧美日韩视频第一区| 国产女主播视频一区二区| 天堂va蜜桃一区二区三区漫画版| 成人午夜电影网站| 日韩欧美一二三区| 亚洲激情在线播放| 国产高清不卡二三区| 欧美一区二区二区| 亚洲精品国产a| 粉嫩嫩av羞羞动漫久久久| 91精品国产综合久久久蜜臀粉嫩 | 久久嫩草精品久久久精品一| 亚洲最新在线观看| 国产福利91精品一区二区三区| 欧美日韩精品欧美日韩精品一 | 亚洲欧美日韩人成在线播放| 国产在线一区观看| 欧美伦理影视网| √…a在线天堂一区| 国产成人综合精品三级| 欧美一区二区三区在线| 亚洲国产综合91精品麻豆| 成人黄色综合网站| 久久蜜桃av一区二区天堂| 日本少妇一区二区| 欧美日韩一区三区四区| 亚洲欧美日韩系列| www.亚洲激情.com| 国产日韩欧美精品电影三级在线| 免费久久99精品国产| 欧美午夜电影网| 亚洲三级在线免费| www.66久久| 国产精品久久久久久久久搜平片| 久久狠狠亚洲综合| 4438亚洲最大| 日韩精品乱码av一区二区| 欧美精品日韩一区| 性做久久久久久免费观看| 欧美四级电影在线观看| 亚洲一区二区三区国产| 欧美亚洲禁片免费| 午夜在线成人av| 欧美日韩久久一区二区| 一区二区三区欧美| 日本道色综合久久| 一区二区免费视频| 欧美在线免费视屏| 亚洲国产精品麻豆| 欧美日韩一区二区三区不卡| 亚洲va韩国va欧美va| 欧美精品色综合| 日韩精品色哟哟| 日韩精品一区二区三区老鸭窝| 美女视频黄免费的久久| 欧美成人aa大片| 精品在线你懂的| 亚洲国产精品v| 91麻豆.com| 亚洲成精国产精品女| 在线播放日韩导航| 久草精品在线观看| 久久久国产精华| 91在线精品秘密一区二区| 一区二区三区欧美视频| 欧美丰满少妇xxxbbb| 精品一区二区三区免费| 国产欧美一区二区三区鸳鸯浴 | 精品夜夜嗨av一区二区三区| 久久久久综合网| av电影在线观看完整版一区二区| 亚洲欧美一区二区在线观看| 欧美色电影在线| 久草精品在线观看| 亚洲欧洲另类国产综合| 欧美视频一区二| 久久精品72免费观看| 中文字幕一区二区三中文字幕| 欧美中文字幕不卡| 九色综合国产一区二区三区| 中文字幕中文字幕在线一区 | 岛国精品在线播放| 亚洲成人黄色影院| 久久久久久久久一| 91精品福利视频| 久久精品国产一区二区| 亚洲天堂网中文字| 51精品秘密在线观看| 成人av综合在线| 舔着乳尖日韩一区| 国产精品丝袜一区| 在线电影国产精品| av不卡在线观看| 久久黄色级2电影| 一区二区三区中文字幕| 精品久久久久久无| 91欧美一区二区| 国产一区日韩二区欧美三区| 亚洲欧美激情在线| xfplay精品久久| 欧美视频一区二区| 粉嫩一区二区三区在线看| 日韩不卡手机在线v区| 亚洲人成电影网站色mp4| 日韩精品一区二区三区在线观看| av电影在线不卡| 国产黄色成人av|