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

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

?? msado15.tli

?? 簡單的vc實現與Access的ado連接
?? 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 03/07/08 at 12:39:51 - 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一区二区三区免费野_久草精品视频
麻豆视频观看网址久久| 亚洲黄色片在线观看| 中文字幕在线不卡| 卡一卡二国产精品 | 欧美肥妇bbw| 一区二区中文字幕在线| 黄一区二区三区| 欧美高清性hdvideosex| 亚洲乱码国产乱码精品精98午夜| 麻豆91精品视频| 色综合天天综合| 精品国产91洋老外米糕| 亚洲人成亚洲人成在线观看图片| 国产一区二区91| 精品蜜桃在线看| 日韩不卡免费视频| 欧美日韩一级片网站| 伊人色综合久久天天| 激情综合色综合久久综合| 欧美三级中文字幕在线观看| 中文字幕乱码亚洲精品一区| 婷婷丁香激情综合| 色综合咪咪久久| 国产午夜精品一区二区三区四区| 亚洲成av人片在线| 色88888久久久久久影院按摩| 国产三级一区二区三区| 蜜桃精品视频在线| 7878成人国产在线观看| 日韩精品久久理论片| 夜夜爽夜夜爽精品视频| 日本女优在线视频一区二区| 高清久久久久久| 欧美精彩视频一区二区三区| 国产精品白丝av| 国产精品免费网站在线观看| 99久久精品国产精品久久| 成人免费在线播放视频| 一本色道久久综合狠狠躁的推荐| 亚洲三级视频在线观看| 欧美午夜精品免费| 美国毛片一区二区三区| 久久色.com| 国产91精品一区二区麻豆亚洲| 中文字幕视频一区二区三区久| 99久久精品免费看国产免费软件| 亚洲免费av高清| 91精品婷婷国产综合久久 | 精品一区二区三区av| 久久奇米777| www.99精品| 亚洲欧洲三级电影| 欧美专区亚洲专区| 性做久久久久久免费观看欧美| 欧美裸体一区二区三区| 黄色日韩网站视频| 欧美激情一区三区| 99国内精品久久| 亚洲与欧洲av电影| 92精品国产成人观看免费| 一区二区在线观看免费 | 国产乱一区二区| 久久午夜国产精品| 懂色av中文一区二区三区| 亚洲欧洲日韩在线| 欧美一区三区四区| 99国产精品久久| 九一久久久久久| 亚洲欧洲中文日韩久久av乱码| 91精品国产aⅴ一区二区| 大胆亚洲人体视频| 免费xxxx性欧美18vr| 18成人在线视频| 精品少妇一区二区| 欧美亚洲国产一区二区三区va | 欧美xxxxx裸体时装秀| 99re成人精品视频| 激情综合网天天干| 天堂资源在线中文精品| 国产精品美女久久久久久久| 欧美日韩久久一区二区| 成人av在线资源网站| 蜜桃精品视频在线观看| 亚洲一级在线观看| 国产精品久久久久9999吃药| 欧美大片一区二区三区| 欧美熟乱第一页| 91视频精品在这里| www.欧美色图| 国产福利不卡视频| 奇米888四色在线精品| 一区二区三区欧美视频| 国产精品日产欧美久久久久| 精品免费视频.| 91麻豆精品国产91久久久久久| 欧美亚洲日本国产| 一本久久a久久精品亚洲| 成人听书哪个软件好| 久久 天天综合| 久久精品国产**网站演员| 天天操天天色综合| 香港成人在线视频| 亚洲国产日韩精品| 亚洲一区二区三区在线| 亚洲激情一二三区| 亚洲精品欧美激情| 亚洲一区二区中文在线| 一区二区三区四区高清精品免费观看 | 亚洲免费观看高清完整版在线观看| 久久毛片高清国产| 久久久精品人体av艺术| 久久久精品综合| 国产精品免费丝袜| 亚洲欧洲av在线| 亚洲欧洲制服丝袜| 亚洲一级二级在线| 日韩中文字幕一区二区三区| 三级在线观看一区二区| 日本午夜一本久久久综合| 麻豆久久久久久| 国产做a爰片久久毛片| 国产999精品久久| 99久久99久久精品免费观看| 99久久久久久| 色偷偷成人一区二区三区91| 欧美日韩一级二级| 精品日韩成人av| 欧美高清在线一区| 亚洲精品成人a在线观看| 亚洲一区二区黄色| 久久精品国产99国产| 国产sm精品调教视频网站| 99re6这里只有精品视频在线观看 99re8在线精品视频免费播放 | 精品久久久久久久久久久院品网| 精品国产一区二区亚洲人成毛片| 日韩免费电影网站| 国产精品欧美一区喷水| 一区二区三区加勒比av| 日韩高清在线不卡| 丰满白嫩尤物一区二区| 91亚洲国产成人精品一区二区三| 欧美三级中文字| 精品国产3级a| 国产精品久久午夜| 五月天欧美精品| 国产一级精品在线| 日本道色综合久久| 精品免费一区二区三区| 国产精品第一页第二页第三页| 亚洲综合久久av| 国内一区二区视频| 色婷婷综合久久久久中文 | 欧美视频中文字幕| 精品免费99久久| 一区二区三区精品| 国产精品综合一区二区三区| 日本精品一级二级| 国产欧美日韩精品在线| 日韩精品视频网| 在线欧美日韩国产| 国产精品理论片| 卡一卡二国产精品| 欧美日韩免费观看一区三区| 国产人伦精品一区二区| 欧美bbbbb| 欧美色精品天天在线观看视频| 国产精品午夜久久| 琪琪一区二区三区| 色噜噜久久综合| 国产精品毛片久久久久久| 麻豆一区二区99久久久久| 欧美色综合影院| 亚洲三级在线免费| 成人免费精品视频| 国产亚洲欧美日韩俺去了| 天堂成人国产精品一区| 欧洲视频一区二区| 成人免费在线视频观看| 国产精品456| 久久久噜噜噜久久中文字幕色伊伊 | 美腿丝袜在线亚洲一区| 欧美在线观看一二区| 亚洲日本va在线观看| 成人av网站免费观看| 久久精品视频在线看| 激情欧美日韩一区二区| 日韩精品一区二区三区视频播放| 日韩专区中文字幕一区二区| 欧美日韩精品欧美日韩精品| 亚洲国产美女搞黄色| 欧美日韩一区二区三区高清| 亚洲免费观看高清完整版在线观看熊| 成人免费毛片嘿嘿连载视频| 国产日韩精品一区| 成人a级免费电影| 日韩美女视频一区二区| 色综合久久久久久久久久久| 亚洲日本va午夜在线影院| 91色|porny| 亚洲午夜久久久久久久久电影院 |