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

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

?? msado15.tli

?? vc ADO 連接數據庫
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (e296427e).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 11/16/04 at 15:05:26 - 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一区二区在线观看| 午夜免费久久看| 激情五月婷婷综合网| 国产宾馆实践打屁股91| 亚洲小说欧美激情另类| 国产成人精品亚洲日本在线桃色| 色综合天天在线| 色哟哟在线观看一区二区三区| 欧美裸体一区二区三区| 久久久久久99久久久精品网站| 亚洲六月丁香色婷婷综合久久 | 一区二区三区免费在线观看| 午夜精品视频在线观看| 国产福利一区二区三区在线视频| 色噜噜狠狠一区二区三区果冻| 日韩亚洲欧美中文三级| 国产精品久久久久久久岛一牛影视| 亚洲va在线va天堂| 国产自产v一区二区三区c| 欧美男人的天堂一二区| 国产精品美女久久久久久久久| 婷婷国产v国产偷v亚洲高清| 99re热视频这里只精品| 精品免费国产二区三区| 天天综合色天天| 99r国产精品| 亚洲素人一区二区| 国产精品综合在线视频| 欧美一区二区三区四区视频| 亚洲精品水蜜桃| 99久久综合99久久综合网站| 欧美xxxx在线观看| 亚洲午夜一区二区| 一本到三区不卡视频| 国产精品久久久久久久久晋中| 石原莉奈在线亚洲二区| 欧美精品视频www在线观看| 亚洲欧美偷拍卡通变态| 国产剧情一区二区三区| 欧美xxxxx牲另类人与| 五月激情丁香一区二区三区| 欧美一区二区三区的| 亚洲综合色噜噜狠狠| 色综合天天天天做夜夜夜夜做| 国产日本亚洲高清| 国产美女av一区二区三区| 一本到高清视频免费精品| 一卡二卡欧美日韩| 91电影在线观看| 亚洲最新视频在线播放| 色偷偷一区二区三区| 日本一区二区三区四区在线视频| 国产呦萝稀缺另类资源| 日韩一级片在线播放| 日韩精品一二三四| 56国语精品自产拍在线观看| 国产一区91精品张津瑜| 日韩精品一区二区三区在线播放| 捆绑紧缚一区二区三区视频| 欧美一级免费大片| 国内精品久久久久影院薰衣草| 6080yy午夜一二三区久久| 麻豆久久久久久| 精品999在线播放| 国产精品88av| 国产精品传媒视频| 91官网在线免费观看| 麻豆国产欧美日韩综合精品二区 | 久久新电视剧免费观看| 国产一区二区三区| 国产精品久久久久国产精品日日| av电影一区二区| 亚洲一区二区三区四区在线免费观看| 欧美综合亚洲图片综合区| 免费亚洲电影在线| 国产亚洲视频系列| 国产高清久久久久| 亚洲第一成人在线| 欧美精品一区二区久久婷婷| 国产盗摄女厕一区二区三区 | 久久久精品黄色| 在线不卡免费欧美| 国产精品一线二线三线| 911国产精品| 日韩理论片中文av| 91精品国产一区二区| 高清不卡一区二区| 人人爽香蕉精品| 亚洲美女视频一区| 国产蜜臀av在线一区二区三区| 欧美日韩精品二区第二页| 99久久婷婷国产综合精品电影| 久久精品国产亚洲高清剧情介绍| 亚洲六月丁香色婷婷综合久久| 国产日产欧美一区| 日韩精品在线网站| 91精品婷婷国产综合久久竹菊| 色综合天天综合在线视频| 国产一区二区伦理片| 秋霞av亚洲一区二区三| 亚洲一二三级电影| 亚洲另类在线视频| 亚洲欧洲制服丝袜| 中文字幕一区二区三区不卡| 国产偷国产偷亚洲高清人白洁| 日韩精品一区二区三区三区免费| 欧美巨大另类极品videosbest | 亚洲乱码一区二区三区在线观看| 久久精品在这里| 亚洲人成亚洲人成在线观看图片| 国产午夜精品久久久久久久 | 黄色成人免费在线| 日本成人在线网站| 秋霞电影一区二区| 久久精品国产精品亚洲综合| 日韩成人一级片| 日韩av中文字幕一区二区| 天天操天天干天天综合网| 亚洲va欧美va国产va天堂影院| 亚洲精品国产一区二区三区四区在线| 国产精品久久影院| 国产精品久久久久毛片软件| 国产欧美视频一区二区三区| 久久精品人人做人人爽97| 国产欧美一二三区| 综合久久一区二区三区| 一区二区三区精品| 爽好久久久欧美精品| 日韩成人免费电影| 麻豆精品新av中文字幕| 国产精品自产自拍| a亚洲天堂av| 欧美性做爰猛烈叫床潮| 91精品午夜视频| 国产日韩欧美高清| 亚洲精品国产精华液| 日韩av成人高清| 国产成人午夜高潮毛片| 91亚洲午夜精品久久久久久| 欧美午夜寂寞影院| 日韩亚洲电影在线| 日本一区二区三区在线不卡| 亚洲精品高清在线| 日韩激情一区二区| 国产一区二区看久久| 在线欧美小视频| 亚洲精品免费视频| 另类中文字幕网| 成人国产在线观看| 欧美剧情电影在线观看完整版免费励志电影| 91精品国产丝袜白色高跟鞋| 欧美国产视频在线| 亚洲成人福利片| 国产a区久久久| 欧美日韩免费不卡视频一区二区三区 | 精品一区二区三区视频在线观看| 国产91在线|亚洲| 欧美日韩精品专区| 国产精品女同一区二区三区| 午夜欧美在线一二页| 国产不卡在线一区| 91精品国产综合久久福利软件 | 日韩视频中午一区| 国产精品久久久久久久久动漫 | 在线播放一区二区三区| 国产精品无圣光一区二区| 日韩av电影天堂| 一本色道综合亚洲| 日本一区二区视频在线| 免费成人你懂的| 91久久久免费一区二区| 久久久www免费人成精品| 无吗不卡中文字幕| 色婷婷综合五月| 国产精品久久久久久久久果冻传媒| 欧美a一区二区| 欧美性感一类影片在线播放| 国产精品美女久久久久久久| 激情五月播播久久久精品| 欧美精品一二三| 亚洲综合色网站| 91在线观看视频| 国产日韩欧美电影| 国产专区综合网| 日韩免费福利电影在线观看| 亚洲va韩国va欧美va精品 | 国产成人亚洲精品青草天美 | 欧美日韩精品一区视频| 亚洲免费资源在线播放| 不卡的电影网站| 亚洲国产精品av| 国产一级精品在线| 久久午夜羞羞影院免费观看| 日本不卡中文字幕| 91精品国产综合久久久蜜臀图片| 亚洲综合激情小说| 在线观看成人小视频| 一区二区三区精品在线观看|