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

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

?? msado15.tli

?? an Atl_com use to read or write an mdb file which use ado.Japanese software develop
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (8a05ab88).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ADO\msado15.dll
// compiler-generated file created 05/11/07 at 08:43: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, 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一区二区三区免费野_久草精品视频
在线观看网站黄不卡| 99久久夜色精品国产网站| 亚洲四区在线观看| 国产精品第13页| 亚洲天堂2014| 亚洲电影一区二区| 日本中文在线一区| 麻豆国产一区二区| 国产乱码精品一品二品| 国产成人精品免费网站| 国产老妇另类xxxxx| 不卡电影免费在线播放一区| 99re这里只有精品首页| 欧美主播一区二区三区美女| 欧美日韩aaa| 精品福利在线导航| 国产精品久久久久精k8| 一区二区三区久久久| 日本午夜精品视频在线观看| 国产精品主播直播| 色成年激情久久综合| 91精品一区二区三区久久久久久| 久久综合五月天婷婷伊人| 国产精品色哟哟| 亚洲一区在线观看免费| 毛片一区二区三区| 99国产精品视频免费观看| 欧美情侣在线播放| 国产精品色噜噜| 免费成人结看片| eeuss鲁片一区二区三区在线看| 色婷婷亚洲婷婷| 日韩一区二区三区在线视频| 国产欧美一区二区三区在线看蜜臀 | 成人一区二区三区中文字幕| 97aⅴ精品视频一二三区| 69p69国产精品| 成人免费小视频| 欧美aⅴ一区二区三区视频| 高清不卡一区二区| 欧美精品久久99| 亚洲人成在线播放网站岛国| 麻豆精品久久精品色综合| 色呦呦国产精品| 久久久亚洲精品石原莉奈| 亚洲成av人在线观看| 成人免费毛片aaaaa**| 91精品国产麻豆| 亚洲欧美色图小说| 国产成人免费在线视频| 欧美电视剧在线观看完整版| 一区二区高清在线| 99视频在线观看一区三区| 欧美www视频| 日韩一区欧美二区| 色综合天天综合在线视频| 国产欧美日本一区视频| 看国产成人h片视频| 欧美三区在线观看| 亚洲男人的天堂在线观看| 粗大黑人巨茎大战欧美成人| 精品成人在线观看| 奇米精品一区二区三区四区 | 欧美日本视频在线| 亚洲黄色免费电影| 一本久久a久久免费精品不卡| 国产色婷婷亚洲99精品小说| 激情伊人五月天久久综合| 日韩一区二区三区免费看 | 欧美裸体bbwbbwbbw| 亚洲精品老司机| 在线免费一区三区| 亚洲三级电影网站| 色乱码一区二区三区88| 亚洲一区av在线| 欧美日韩成人高清| 欧美aa在线视频| 久久一区二区三区国产精品| 久久er99精品| 国产网红主播福利一区二区| 国产激情偷乱视频一区二区三区| 国产色产综合色产在线视频 | 亚洲三级电影全部在线观看高清| 不卡一区二区三区四区| 亚洲免费观看高清完整版在线观看| 成人免费av资源| 亚洲乱码国产乱码精品精可以看| 一本色道综合亚洲| 亚洲国产精品综合小说图片区| 欧美在线制服丝袜| 奇米888四色在线精品| 久久久精品国产99久久精品芒果| 丁香婷婷综合色啪| 亚洲摸摸操操av| 欧美一区二区三区四区高清| 国内成人精品2018免费看| 中文字幕国产一区| 欧美色国产精品| 国产精品综合一区二区三区| 亚洲天堂福利av| 欧美一区二区三区的| 国产一本一道久久香蕉| 亚洲婷婷综合色高清在线| 欧美日韩一区高清| 久久99精品久久久| 国产精品初高中害羞小美女文| 欧美日韩国产首页| 成人sese在线| 日韩电影在线一区二区三区| 国产亚洲精品福利| 欧美日韩国产小视频在线观看| 国产精品一区在线观看乱码| 综合电影一区二区三区| 日韩欧美二区三区| 91在线一区二区三区| 老色鬼精品视频在线观看播放| 中文字幕一区二区三区乱码在线| 欧美美女一区二区三区| 风间由美中文字幕在线看视频国产欧美| 亚洲最大成人综合| 久久精品视频免费观看| 欧美日韩高清一区| 一本到不卡免费一区二区| 国产福利91精品| 蜜臀av在线播放一区二区三区 | 欧美乱妇20p| 97se狠狠狠综合亚洲狠狠| 韩国v欧美v亚洲v日本v| 日韩高清电影一区| 亚洲一二三区不卡| 亚洲色图在线视频| 欧美激情一区在线| 成人激情校园春色| 蜜臀99久久精品久久久久久软件| 日韩一区有码在线| 国产拍欧美日韩视频二区| 欧美大白屁股肥臀xxxxxx| 欧美在线你懂得| 99久久精品免费看国产| 丁香激情综合五月| 国产精品综合二区| 经典三级视频一区| 久久成人av少妇免费| 日韩成人dvd| 青青青伊人色综合久久| 亚洲成va人在线观看| 亚洲国产视频一区二区| 一区二区三区成人| 一区二区三区av电影| 一区二区三区91| 亚洲国产欧美在线人成| 亚洲成人黄色小说| 日韩国产在线观看一区| 免费欧美高清视频| 精品亚洲porn| 国产馆精品极品| 91最新地址在线播放| 色综合久久九月婷婷色综合| 91豆麻精品91久久久久久| 欧美性猛片aaaaaaa做受| 色婷婷精品久久二区二区蜜臀av| 色先锋久久av资源部| 在线一区二区三区四区五区| 欧美日韩亚洲综合在线| 欧美一区二区三区四区视频| 精品粉嫩超白一线天av| 国产色一区二区| 亚洲精品ww久久久久久p站| 亚洲大尺度视频在线观看| 奇米精品一区二区三区在线观看 | 欧美一级爆毛片| 精品久久久久久久久久久院品网| 欧美日韩一级视频| 一区二区三区日韩精品| 亚洲综合色婷婷| 日韩国产高清在线| 国产999精品久久久久久 | 亚洲欧美偷拍另类a∨色屁股| 亚洲精品国产a久久久久久| 丝袜美腿成人在线| 国产福利不卡视频| 欧美专区亚洲专区| 久久久久国产免费免费| 亚洲精品高清视频在线观看| 老司机免费视频一区二区三区| 粉嫩一区二区三区性色av| 欧美日韩一级黄| 国产精品久久久久久妇女6080| 天堂蜜桃91精品| 成人免费看黄yyy456| 日韩欧美在线一区二区三区| 国产精品美女久久久久久2018| 丝袜美腿成人在线| av中文字幕亚洲| 欧美成人精品二区三区99精品| 亚洲男人的天堂网| 成人精品视频一区| 日韩精品一区二区三区视频| 亚洲一区二区三区影院| 国产69精品一区二区亚洲孕妇|