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

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

?? msado15.tli

?? VC中使用ado連接數據庫小實例
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (7e5599e5).
//
// f:\程序練習\vcado\debug\msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 03/18/09 at 18:52:08 - 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一区二区三区免费野_久草精品视频
成人av网址在线观看| 国产不卡高清在线观看视频| 中文字幕在线不卡一区| 久久精品亚洲国产奇米99| 日韩写真欧美这视频| 3atv一区二区三区| 欧美精品黑人性xxxx| 欧美日韩电影一区| 91麻豆精品国产91久久久资源速度| 色哟哟欧美精品| 欧美最猛性xxxxx直播| 在线免费观看日韩欧美| 日本高清成人免费播放| 欧美综合色免费| 欧美三级欧美一级| 欧美一级夜夜爽| 精品国内二区三区| 国产亚洲一区二区三区在线观看| 国产日韩欧美精品综合| 国产精品视频一二三区| 成人欧美一区二区三区| 亚洲精品五月天| 亚洲二区在线观看| 美女视频黄免费的久久| 国产精品一区二区你懂的| 成人精品国产福利| 欧美亚洲动漫精品| 欧美一区午夜视频在线观看| 日韩一区二区三区观看| 国产亚洲欧洲997久久综合 | 久久综合成人精品亚洲另类欧美| 久久久五月婷婷| 日韩毛片视频在线看| 一区二区三区高清| 日韩av中文字幕一区二区| 极品美女销魂一区二区三区免费| 国产精品一区二区久久精品爱涩 | 国产日产亚洲精品系列| 中文字幕一区免费在线观看| 一区二区三区在线看| 天天av天天翘天天综合网色鬼国产| 成人av在线资源| 麻豆久久久久久久| 东方aⅴ免费观看久久av| 美女脱光内衣内裤视频久久网站| 五月激情六月综合| 紧缚捆绑精品一区二区| 国产精品免费视频网站| 91精品国产色综合久久不卡电影 | 午夜av一区二区三区| 亚洲精品成a人| 同产精品九九九| 韩国av一区二区三区四区| 欧美喷水一区二区| 久久国产剧场电影| 91免费版在线看| 日本韩国精品一区二区在线观看| 欧美电影免费观看高清完整版在线观看 | 色系网站成人免费| 欧美大片一区二区三区| 自拍偷拍欧美精品| 久草精品在线观看| 色综合激情五月| 久久亚洲综合av| 无码av免费一区二区三区试看 | 欧美日韩成人综合在线一区二区| 久久久久久亚洲综合影院红桃 | 国产综合久久久久久久久久久久 | 2021国产精品久久精品| 一区二区三区中文字幕精品精品 | 91免费国产视频网站| 精品国产免费久久| 亚洲成人tv网| 色婷婷综合久久久久中文一区二区| 欧美tickling网站挠脚心| 亚洲高清免费观看| 91麻豆免费观看| 国产精品久久久爽爽爽麻豆色哟哟| 亚洲va欧美va国产va天堂影院| 白白色 亚洲乱淫| 精品成人a区在线观看| 五月婷婷久久综合| 欧美色综合天天久久综合精品| 中文字幕欧美日韩一区| 激情综合色丁香一区二区| 欧美日韩亚洲综合在线 欧美亚洲特黄一级| 国产农村妇女毛片精品久久麻豆| 免费成人av资源网| 欧美精品免费视频| 亚洲夂夂婷婷色拍ww47 | 久久久久久久久久久久电影 | 99视频热这里只有精品免费| 久久久久99精品国产片| 久久国产欧美日韩精品| 欧美激情资源网| 99久免费精品视频在线观看| 国产精品久久久久久久久快鸭| 国产乱国产乱300精品| 久久久激情视频| 99这里只有精品| 亚洲一区二区视频在线| 欧美精品亚洲二区| 视频一区二区三区入口| 精品国产乱码91久久久久久网站| 高清久久久久久| 亚洲欧洲日韩在线| 久久久久久久久久久久久夜| 视频在线观看一区二区三区| 日韩av高清在线观看| 欧美精品久久久久久久多人混战| 午夜一区二区三区在线观看| 国产精品丝袜久久久久久app| 国产精品毛片a∨一区二区三区| 亚洲国产视频网站| 在线中文字幕一区| 亚洲与欧洲av电影| 欧美在线制服丝袜| 五月天中文字幕一区二区| 欧美日韩国产首页在线观看| 色综合欧美在线| 亚洲高清免费观看高清完整版在线观看| 在线视频欧美精品| 日韩精品一级中文字幕精品视频免费观看 | 欧美精品丝袜中出| 99国产一区二区三精品乱码| 中文字幕制服丝袜成人av| 一区二区免费看| 91福利视频在线| 亚洲超丰满肉感bbw| 日韩西西人体444www| 激情综合网av| 国产精品你懂的在线欣赏| 91丨九色丨国产丨porny| 亚洲激情自拍视频| 欧美一二三在线| 国产精品影视在线| 日韩美女视频一区| 欧美精品丝袜中出| 国产米奇在线777精品观看| 中文av一区二区| 欧美日韩中文精品| 欧美在线小视频| 精品一区二区三区视频在线观看 | 欧美四级电影在线观看| 日韩影视精彩在线| 国产亚洲精品资源在线26u| 91丨九色丨国产丨porny| 天堂va蜜桃一区二区三区 | 国产免费成人在线视频| 精品国产一区二区三区四区四| 国产欧美1区2区3区| 亚洲婷婷国产精品电影人久久| 国产日韩欧美a| 成人欧美一区二区三区黑人麻豆 | 国产精品毛片大码女人| 国产精品视频一二| 中文字幕一区在线观看| 亚洲天天做日日做天天谢日日欢| 中文字幕一区二区三区蜜月| 91亚洲资源网| 偷拍亚洲欧洲综合| 国产欧美一区二区精品婷婷 | 91精品国产综合久久精品app| 精品一区在线看| 亚洲色图视频网站| 欧美一级欧美三级在线观看 | 久久免费美女视频| 在线观看www91| 国产乱人伦偷精品视频免下载 | 国产福利91精品一区二区三区| 亚洲午夜精品久久久久久久久| 久久青草欧美一区二区三区| 欧美性猛交xxxxxx富婆| 国产电影一区在线| 日韩电影在线观看网站| 亚洲丝袜精品丝袜在线| 欧美不卡在线视频| 欧美伊人精品成人久久综合97| 久久国产精品无码网站| 亚洲国产视频a| 亚洲视频在线一区观看| 精品国产99国产精品| 欧美精品v日韩精品v韩国精品v| 99热99精品| 粉嫩一区二区三区在线看| 奇米精品一区二区三区在线观看一 | 欧美xxxxxxxx| 精品视频免费看| 99久免费精品视频在线观看| 国产精品一区二区不卡| 日韩成人免费电影| 亚洲制服丝袜av| 亚洲免费观看高清完整版在线观看| 久久免费看少妇高潮| 欧美成人一区二区三区在线观看| 欧美亚洲日本一区| 色综合久久综合网欧美综合网| 成人午夜视频在线| 国产精品1024| 国产精品99久久久久久有的能看|