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

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

?? msado15.tli

?? testOracleConnect.rar is a sample about Oracle Connection.
?? 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 05/18/08 at 21:42:21 - 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一区二区三区免费野_久草精品视频
亚洲v中文字幕| 久久久久一区二区三区四区| 一个色综合网站| 日本精品一区二区三区高清 | 国产一区二区毛片| 久久久久久亚洲综合影院红桃| 狠狠色狠狠色综合系列| 欧美极品aⅴ影院| 色综合天天综合网国产成人综合天| 亚洲欧美另类图片小说| 欧美裸体bbwbbwbbw| 麻豆精品在线观看| 中文字幕免费一区| 日本大香伊一区二区三区| 天堂va蜜桃一区二区三区 | 久久99国产精品免费| 精品久久久久一区二区国产| 国产精品中文字幕日韩精品| 国产精品国产自产拍在线| 欧美中文字幕一区二区三区 | 91小视频免费观看| 日韩精品每日更新| 欧美激情中文字幕| 欧美午夜免费电影| 国产精品99久久久久久久女警| 国产精品久久一级| 91精品在线一区二区| 国产成人高清在线| 夜夜嗨av一区二区三区网页| 精品国产免费久久| 欧美又粗又大又爽| 国产综合色在线| 洋洋av久久久久久久一区| 欧美精品一区二区在线播放| 91片在线免费观看| 久久不见久久见中文字幕免费| 中文字幕一区在线观看视频| 日韩午夜在线观看| 色综合久久88色综合天天6| 狠狠色伊人亚洲综合成人| 亚洲国产cao| 亚洲欧洲精品成人久久奇米网| 日韩一区二区视频在线观看| 91麻豆免费观看| 国产一区二区三区在线观看免费视频 | 在线观看一区二区视频| 激情成人午夜视频| 亚洲在线视频网站| 国产精品理论在线观看| 日韩免费高清av| 欧美剧情片在线观看| 99国产欧美另类久久久精品| 精品一区二区国语对白| 视频一区二区三区在线| 亚洲欧美一区二区三区久本道91| 久久影院午夜论| 91精品国产入口| 欧美日韩国产一级| 色老综合老女人久久久| av一二三不卡影片| 成人免费观看av| 成人永久aaa| 国产不卡在线视频| 国产一区亚洲一区| 老司机午夜精品| 美女视频一区二区| 日本不卡不码高清免费观看| 亚洲成人av中文| 亚洲国产裸拍裸体视频在线观看乱了 | 中文字幕一区av| 中文欧美字幕免费| 久久久www成人免费毛片麻豆 | 日本不卡视频在线| 日本成人在线不卡视频| 日韩和欧美的一区| 日韩经典一区二区| 免费观看成人av| 狠狠色狠狠色综合系列| 极品少妇xxxx偷拍精品少妇| 日韩av一级电影| 美女视频黄a大片欧美| 日本亚洲视频在线| 精品亚洲欧美一区| 国产电影一区在线| 不卡一二三区首页| 色综合色综合色综合色综合色综合 | 日韩亚洲国产中文字幕欧美| 精品久久一二三区| 国产欧美一区二区三区鸳鸯浴| 日本一区二区三区在线不卡| 欧美国产精品劲爆| 亚洲女女做受ⅹxx高潮| 亚洲午夜精品久久久久久久久| 性久久久久久久| 久久99久久久久久久久久久| 国产伦精品一区二区三区视频青涩| 国产成人av电影在线观看| 成人免费毛片aaaaa**| 色综合色狠狠天天综合色| 欧美精三区欧美精三区| 精品国产区一区| 综合亚洲深深色噜噜狠狠网站| 亚洲日本在线看| 日韩中文字幕1| 国产精品一区二区无线| 97se亚洲国产综合自在线| 欧美日韩国产一区二区三区地区| 欧美mv日韩mv| 亚洲天堂2016| 男人的天堂久久精品| 春色校园综合激情亚洲| 欧美日韩专区在线| 久久久亚洲精品一区二区三区 | 国产女人18水真多18精品一级做| 国产精品高潮呻吟| 亚洲一级在线观看| 国产综合成人久久大片91| 色综合色狠狠综合色| 日韩欧美国产综合在线一区二区三区 | 国产成人av自拍| 欧美三级蜜桃2在线观看| 欧美精彩视频一区二区三区| kk眼镜猥琐国模调教系列一区二区| 一区二区三区中文字幕在线观看| 国产精品亲子乱子伦xxxx裸| 中文字幕中文字幕一区| 日本人妖一区二区| 福利一区二区在线| 欧美日韩你懂得| 中文字幕亚洲一区二区va在线| 全部av―极品视觉盛宴亚洲| 成人免费黄色在线| 久久一日本道色综合| 韩国av一区二区| 欧美精品在线一区二区| 91亚洲永久精品| 97久久久精品综合88久久| 日韩欧美成人激情| 一区二区三区四区不卡视频| 韩国视频一区二区| 欧美精品乱码久久久久久| 国产亚洲欧美一级| 久久电影网站中文字幕| 在线观看亚洲a| 国产精品久久久久婷婷二区次 | 亚洲午夜视频在线| 99视频精品在线| 国产欧美日韩精品a在线观看| 日本一区中文字幕| 欧美精三区欧美精三区 | 日日摸夜夜添夜夜添亚洲女人| aaa国产一区| 国产亚洲精品免费| 精品在线观看视频| 日韩一区二区电影在线| 亚洲精品欧美综合四区| 欧美二区在线观看| 韩国成人精品a∨在线观看| 国产日产欧美一区二区视频| 99久久伊人精品| 亚洲精品中文在线影院| 国产91丝袜在线播放九色| 国产精品免费视频网站| 日韩国产欧美在线视频| 色噜噜偷拍精品综合在线| 国产精品美女久久福利网站| 国产盗摄女厕一区二区三区| 欧美激情中文不卡| www.久久久久久久久| 中文字幕一区二区三区不卡 | 午夜欧美在线一二页| 欧美日韩亚洲综合| 三级在线观看一区二区| 91麻豆精品国产91久久久久久| 日韩精品电影在线观看| 日韩欧美卡一卡二| 国产盗摄精品一区二区三区在线| 国产欧美一区二区三区在线看蜜臀 | 青椒成人免费视频| 日韩一区二区中文字幕| 激情欧美日韩一区二区| 欧美韩日一区二区三区| 99久久精品国产一区| 一区二区三区av电影| 欧美久久免费观看| 激情综合色丁香一区二区| 国产亚洲成av人在线观看导航| 丁香五精品蜜臀久久久久99网站 | 首页国产丝袜综合| 精品国产乱码久久久久久图片| 国产一区二区三区久久久| 国产精品人成在线观看免费| 色婷婷久久久综合中文字幕| 亚洲国产一区二区视频| ww亚洲ww在线观看国产| jlzzjlzz亚洲女人18| 香港成人在线视频| 久久久久久久免费视频了| 9i在线看片成人免费| 日韩av在线发布|