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

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

?? msado15.tli

?? VC++高級編程技巧與示例
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (bd3daa4f).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library E:\Program Files\Common Files\System\ADO\msado15.dll
// compiler-generated file created 03/26/03 at 11:12:56 - 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, long 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;
}

inline HRESULT Connection15::RollbackTrans ( ) {

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美精品一区二区三区四区| 欧美国产日本视频| 伊人婷婷欧美激情| gogogo免费视频观看亚洲一| 亚洲国产激情av| 波多野结衣在线一区| 中文字幕一区二区三区蜜月| av一二三不卡影片| 亚洲美女淫视频| 欧美猛男男办公室激情| 日日嗨av一区二区三区四区| 欧美一卡2卡3卡4卡| 国产在线精品一区二区夜色 | 亚洲欧洲日产国码二区| 91麻豆自制传媒国产之光| 亚洲精品日韩一| 欧美巨大另类极品videosbest | 免费在线观看一区| 精品免费一区二区三区| 国产不卡高清在线观看视频| 自拍偷拍欧美激情| 欧美一区二区三区免费| 国产精品自拍一区| 亚洲欧美日韩成人高清在线一区| 欧美日韩国产乱码电影| 精品在线一区二区| 亚洲激情中文1区| 欧美一级二级三级蜜桃| 成人黄色在线网站| 日韩精品一级二级| 国产欧美日韩综合精品一区二区 | 欧美日韩中文国产| 国产一区二区三区蝌蚪| 亚洲黄色小视频| 欧美成人a在线| 日本电影欧美片| 久久国产精品99久久人人澡| 国产精品国产自产拍高清av| 欧美日韩精品福利| 成人精品国产免费网站| 日韩成人免费看| 最近中文字幕一区二区三区| 欧美成人一区二区三区片免费| www.日韩精品| 色系网站成人免费| 秋霞午夜鲁丝一区二区老狼| 国产精品久久久久四虎| 欧美一区二区视频观看视频| 99国产精品国产精品久久| 老司机午夜精品99久久| 亚洲成人在线观看视频| 久久国产生活片100| 一级做a爱片久久| 色综合 综合色| 国产精品亚洲а∨天堂免在线| 亚洲综合图片区| 国产亚洲精品aa午夜观看| 欧美日韩高清影院| 色悠悠久久综合| 97久久超碰国产精品| 国产福利一区二区| 美女视频网站黄色亚洲| 亚洲1区2区3区视频| 一区二区在线观看视频在线观看| 国产日产欧美一区二区视频| 精品日韩一区二区三区| 欧美精品免费视频| 欧美唯美清纯偷拍| 久久66热re国产| 久久网站热最新地址| 亚洲欧美日韩国产综合在线| 欧美国产综合一区二区| 国产日韩成人精品| 国产亚洲精品中文字幕| 精品久久久久香蕉网| 日韩久久久精品| 91麻豆精品国产自产在线 | 国产成人av资源| 国产精品一区二区果冻传媒| 久久成人av少妇免费| 青草av.久久免费一区| 日韩精品色哟哟| 麻豆精品久久精品色综合| 麻豆精品在线视频| 久久99久久精品| 韩国精品在线观看| 久久99精品久久久久久久久久久久| 日本成人在线电影网| 麻豆一区二区99久久久久| 久久疯狂做爰流白浆xx| 国产精品资源网站| 一级日本不卡的影视| 亚洲国产精品v| 国产亚洲精品免费| 欧美国产丝袜视频| 欧美国产1区2区| 国产精品麻豆一区二区| 精品一区二区三区免费观看 | 国产精品综合二区| 粉嫩欧美一区二区三区高清影视| 国产在线精品一区二区夜色| 国产成人免费在线视频| 成人综合婷婷国产精品久久 | 在线观看成人小视频| 9191久久久久久久久久久| 精品88久久久久88久久久| 国产精品天干天干在观线| 一二三四区精品视频| 日本在线不卡一区| 成人一区二区在线观看| 在线观看欧美黄色| 日韩三级免费观看| 国产精品视频在线看| 午夜成人在线视频| 国产九色sp调教91| 欧美色图一区二区三区| 欧美成人在线直播| 一区二区三区在线观看网站| 日韩av高清在线观看| 成人综合在线观看| 717成人午夜免费福利电影| 久久久久久久av麻豆果冻| 夜夜嗨av一区二区三区网页| 久久99久久久欧美国产| 97超碰欧美中文字幕| 日韩欧美国产精品一区| 亚洲免费三区一区二区| 国内外成人在线| 精品视频一区三区九区| 欧美极品美女视频| 天天亚洲美女在线视频| 99riav久久精品riav| 欧美日韩国产影片| 国产欧美日韩另类一区| 日本不卡视频一二三区| 色老汉av一区二区三区| 久久免费精品国产久精品久久久久| 亚洲黄色免费网站| 成人h动漫精品一区二区| 欧美一级搡bbbb搡bbbb| 亚洲欧美日韩中文播放| 国产盗摄视频一区二区三区| 91麻豆精品国产91久久久久久久久| 国产精品成人在线观看| 久久精品久久综合| 在线看日本不卡| 中文字幕欧美激情一区| 久久99精品视频| 91精品国产一区二区三区| 一区二区在线观看视频在线观看| 欧美激情一区二区在线| 亚洲大片在线观看| 91麻豆swag| 国产精品二区一区二区aⅴ污介绍| 久久99精品视频| 中文字幕一区在线观看视频| 蓝色福利精品导航| 日韩一区二区精品| 日本aⅴ亚洲精品中文乱码| 91福利资源站| 亚洲男人都懂的| 99国产精品一区| 亚洲丝袜美腿综合| 91在线观看下载| 亚洲老司机在线| 91丨九色丨尤物| 亚洲蜜臀av乱码久久精品蜜桃| 99久久久久免费精品国产| 国产精品二三区| 91丨porny丨户外露出| 亚洲欧洲成人自拍| 色噜噜狠狠成人中文综合| 亚洲免费av高清| 欧美日韩精品免费观看视频| 偷偷要91色婷婷| 欧美一区二区三区成人| 久久国产剧场电影| 国产日韩欧美精品一区| 成人黄色av电影| 一区二区三区在线观看欧美| 欧美特级限制片免费在线观看| 亚洲午夜影视影院在线观看| 欧美挠脚心视频网站| 看电视剧不卡顿的网站| 久久久午夜精品| 99在线热播精品免费| 一区二区三区国产精华| 69久久99精品久久久久婷婷| 麻豆精品国产传媒mv男同| 久久精子c满五个校花| av午夜精品一区二区三区| 洋洋成人永久网站入口| 91麻豆精品国产自产在线| 国产一区二区三区美女| 亚洲日本一区二区三区| 欧美男同性恋视频网站| 国产一区二区成人久久免费影院| 视频一区欧美精品| 久久综合五月天婷婷伊人| eeuss鲁片一区二区三区在线看|