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

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

?? msado15.tli

?? 一個ADO連SQL Server數據庫的實例
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (2764df43).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 04/06/04 at 14:14:52 - 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;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
一区视频在线播放| 欧美亚洲综合色| 欧美日韩精品一区视频| 国产人成亚洲第一网站在线播放 | 国产真实乱子伦精品视频| av中文字幕一区| 精品国产麻豆免费人成网站| 亚洲免费在线看| 国产夫妻精品视频| 欧美成人官网二区| 视频一区二区中文字幕| 日本韩国一区二区三区| 中文一区在线播放| 国产精品一区专区| 日韩午夜激情电影| 天天亚洲美女在线视频| 欧洲精品视频在线观看| 中文字幕av一区二区三区高| 精品一区免费av| 91精品国产麻豆| 视频一区二区三区在线| 91免费观看在线| 亚洲欧洲国产日本综合| 成人免费视频视频在线观看免费| 久久亚洲春色中文字幕久久久| 日产精品久久久久久久性色| 在线观看91av| 首页综合国产亚洲丝袜| 欧美三级韩国三级日本三斤| 一区二区三区四区不卡视频| av中文字幕在线不卡| 国产精品二区一区二区aⅴ污介绍| 国产成人免费av在线| 国产午夜久久久久| 成人性生交大片免费看中文| 国产欧美视频在线观看| 国产成人综合视频| 18欧美乱大交hd1984| 成人午夜大片免费观看| 一区在线观看免费| 一本色道久久综合亚洲aⅴ蜜桃| 中文字幕一区二区三区色视频| 成人va在线观看| 日韩美女久久久| 欧美午夜精品久久久| 日本aⅴ免费视频一区二区三区 | 蜜桃免费网站一区二区三区| 日韩一区二区三区免费看 | 日韩免费福利电影在线观看| 国产在线视频一区二区三区| 久久精品水蜜桃av综合天堂| 北岛玲一区二区三区四区| 亚洲欧美另类久久久精品 | 日韩国产欧美在线视频| 欧美电视剧在线看免费| 国产麻豆精品一区二区| 综合亚洲深深色噜噜狠狠网站| 在线观看91视频| 免费xxxx性欧美18vr| 国产日韩高清在线| 日本高清无吗v一区| 日本特黄久久久高潮| 欧美韩日一区二区三区四区| 欧美性色综合网| 精品一区二区免费看| 综合分类小说区另类春色亚洲小说欧美| hitomi一区二区三区精品| 亚洲444eee在线观看| 久久精品欧美一区二区三区麻豆| 91性感美女视频| 免费看日韩a级影片| 国产精品久久久久影院色老大| 欧洲av一区二区嗯嗯嗯啊| 久久精品国产亚洲5555| 亚洲人成精品久久久久| 精品国产91久久久久久久妲己 | 成人午夜激情片| 同产精品九九九| 国产精品久久久久天堂| 欧美精品一二三四| 成人教育av在线| 美女视频黄 久久| 一区二区三区四区高清精品免费观看 | 亚洲人成精品久久久久久| 精品国精品自拍自在线| 欧美日韩综合色| 91在线免费看| 国产一级精品在线| 日韩经典中文字幕一区| 亚洲欧洲美洲综合色网| 久久日韩粉嫩一区二区三区 | 午夜国产精品一区| 国产精品嫩草影院com| 精品人伦一区二区色婷婷| 欧美三区在线视频| 91蜜桃在线观看| 国产麻豆91精品| 日韩av在线播放中文字幕| 亚洲精品中文在线| 国产精品福利一区| 欧美国产激情一区二区三区蜜月| 日韩视频在线永久播放| 4438x成人网最大色成网站| 欧美又粗又大又爽| 一本色道久久综合亚洲91| 99热这里都是精品| 成人动漫一区二区三区| 风间由美性色一区二区三区| 国产黄色成人av| 国产一区二区不卡在线| 久久99国产精品成人| 蜜桃av一区二区| 免费一级欧美片在线观看| 日本欧美加勒比视频| 日韩精品乱码免费| 欧美a级理论片| 久久99精品久久只有精品| 蜜桃视频在线观看一区二区| 免费一级欧美片在线观看| 蜜桃一区二区三区在线| 奇米精品一区二区三区在线观看 | 亚洲一区在线电影| 亚洲国产一区二区在线播放| 亚洲成人激情综合网| 午夜久久福利影院| 久久国产欧美日韩精品| 久久av资源网| 国产精品一卡二| 99国产一区二区三精品乱码| 一本久久综合亚洲鲁鲁五月天 | 亚洲r级在线视频| 日本欧美大码aⅴ在线播放| 久久99久久久欧美国产| 成人免费高清视频在线观看| 91香蕉视频mp4| 欧美精品第1页| 精品国产91乱码一区二区三区| 国产人成一区二区三区影院| 亚洲欧美在线aaa| 亚洲第一福利视频在线| 激情久久五月天| 国产99久久久精品| 欧美亚洲免费在线一区| 日韩精品一区二区三区蜜臀 | 日韩精品在线看片z| 国产亚洲精品精华液| 一区二区三区美女| 免费观看成人鲁鲁鲁鲁鲁视频| 床上的激情91.| 欧美色图片你懂的| 久久网站最新地址| 一区二区三区在线观看欧美| 麻豆精品精品国产自在97香蕉| 国产精品一级片| 欧美日韩一区二区三区四区| 久久奇米777| 亚洲r级在线视频| 成人伦理片在线| 欧美一区二区黄| 亚洲人成精品久久久久| 精品中文字幕一区二区小辣椒| 91网站最新地址| 精品处破学生在线二十三| 亚洲一区二区三区三| 国产老妇另类xxxxx| 欧美年轻男男videosbes| 亚洲国产精华液网站w| 婷婷综合另类小说色区| 99久久婷婷国产综合精品电影| 日韩网站在线看片你懂的| 一区二区三区在线观看网站| 国产69精品久久久久毛片| 日韩一区二区麻豆国产| 一区二区三区精品在线观看| 国产毛片精品视频| 欧美一级免费观看| 亚洲综合成人在线视频| 99精品久久99久久久久| 国产校园另类小说区| 久久国产福利国产秒拍| 欧美精品自拍偷拍| 自拍偷在线精品自拍偷无码专区| 国产老妇另类xxxxx| 日韩精品一区在线观看| 人人爽香蕉精品| 欧美日韩精品一区二区三区蜜桃| 亚洲色图制服丝袜| 成人午夜激情片| 中文字幕av一区 二区| 国产精品一区二区久激情瑜伽 | 91精品国产品国语在线不卡| 亚洲午夜久久久久久久久电影网| 99国产精品久久| 成人免费在线观看入口| 成人激情黄色小说| 国产欧美精品日韩区二区麻豆天美 | 成人动漫av在线| 中文字幕国产精品一区二区| 国产精品亚洲午夜一区二区三区| 久久人人超碰精品|