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

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

?? msado15.tli

?? C++的課程設計
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.9782.0 (8a05ab88).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ADO\msado15.dll
// compiler-generated file created 08/16/07 at 15:37:35 - 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一区二区三区免费野_久草精品视频
色婷婷久久久久swag精品 | 中文字幕在线一区| 91亚洲精品一区二区乱码| 国产精品久久久久久久久免费丝袜 | 日本一区二区视频在线| 日本高清成人免费播放| 国内精品国产成人国产三级粉色 | 夜夜爽夜夜爽精品视频| 欧美成人高清电影在线| 欧美三级中文字幕| 91小视频免费观看| 国产成人福利片| 欧美成人精品二区三区99精品| 精品蜜桃在线看| 欧美丰满嫩嫩电影| 成人黄色片在线观看| 天天av天天翘天天综合网色鬼国产| 精品粉嫩超白一线天av| 日韩视频一区二区| 欧美日韩精品一区二区在线播放| 波多野结衣在线一区| 国产一区美女在线| 国产乱子伦视频一区二区三区| 视频一区二区欧美| 日韩综合在线视频| 美国十次了思思久久精品导航| 天堂一区二区在线免费观看| 亚洲成人午夜影院| 美女在线观看视频一区二区| 麻豆精品一区二区综合av| 麻豆精品一区二区| 国产宾馆实践打屁股91| zzijzzij亚洲日本少妇熟睡| 亚洲成av人片一区二区梦乃| 亚洲一区在线视频观看| 亚洲男女毛片无遮挡| 亚洲自拍欧美精品| 日韩高清国产一区在线| 国产在线视频一区二区| 成人做爰69片免费看网站| 91九色最新地址| 日韩欧美黄色影院| 亚洲精品写真福利| 精品亚洲国内自在自线福利| 成人激情文学综合网| 欧美日韩精品综合在线| 久久久久99精品一区| 亚洲成人一二三| 99r国产精品| 日韩欧美色综合网站| 亚洲综合网站在线观看| 国产电影一区二区三区| 日韩精品一区二区三区老鸭窝| 欧美一区二区福利视频| 中文字幕一区日韩精品欧美| 蜜桃免费网站一区二区三区| 色综合色综合色综合色综合色综合 | 精品免费国产二区三区| 一区二区三区不卡在线观看| 国产伦精品一区二区三区在线观看| 欧美日韩三级在线| 亚洲第一在线综合网站| 欧美婷婷六月丁香综合色| 国产精品看片你懂得| 国产美女一区二区三区| 精品免费视频一区二区| 天天操天天干天天综合网| 亚洲自拍偷拍图区| 色婷婷精品大视频在线蜜桃视频| 久久精品一区二区三区四区| 久久精品国产77777蜜臀| 日韩三级视频在线看| 免费高清在线一区| 久久一二三国产| 成熟亚洲日本毛茸茸凸凹| 1024国产精品| 欧美亚州韩日在线看免费版国语版| 一区二区激情小说| 91精品免费在线观看| 国产麻豆成人精品| 日本v片在线高清不卡在线观看| 91黄色在线观看| 亚洲6080在线| 久久久久久免费网| 色综合咪咪久久| 亚洲国产精品人人做人人爽| 日韩欧美一级在线播放| av一区二区三区| 日韩不卡一区二区三区 | 日本精品免费观看高清观看| 亚洲欧美日韩一区二区 | 国产欧美一区二区三区网站| 成人ar影院免费观看视频| 日韩av在线发布| 亚洲男帅同性gay1069| 欧美成人女星排行榜| 欧美色网一区二区| 成人精品高清在线| 精品一区二区三区欧美| 亚洲成av人片在线| 一区二区免费看| 亚洲品质自拍视频| 国产偷国产偷亚洲高清人白洁 | 国模少妇一区二区三区| 性做久久久久久久免费看| 亚洲靠逼com| 亚洲黄色小视频| 亚洲精品一卡二卡| 日本乱人伦aⅴ精品| 日韩欧美不卡在线观看视频| 91成人在线观看喷潮| 午夜av一区二区三区| 中文av一区特黄| 91精品国产91综合久久蜜臀| 日韩欧美国产麻豆| 日本韩国视频一区二区| 91香蕉视频黄| 精品视频免费在线| 久久午夜电影网| 亚洲精选免费视频| 日韩高清在线不卡| 黑人精品欧美一区二区蜜桃| 国产精品一区二区三区四区| 成人福利在线看| 欧美日韩一二区| 国产精品亲子伦对白| 怡红院av一区二区三区| 亚州成人在线电影| 国产精品一卡二| 欧美一级一级性生活免费录像| 久久欧美一区二区| 午夜一区二区三区视频| 国产美女一区二区三区| 欧亚一区二区三区| 久久精品一级爱片| 日本伊人色综合网| 91黄色免费版| 国产精品国产三级国产aⅴ原创| 亚洲午夜精品网| 一本大道久久a久久精品综合| 日韩欧美国产wwwww| 日本午夜精品视频在线观看| 色爱区综合激月婷婷| 国产精品成人免费| 国产不卡视频一区| 亚洲国产精品t66y| 成人精品国产免费网站| 国产亚洲精品久| 成人免费av网站| 欧美韩国日本一区| 97成人超碰视| 亚洲中国最大av网站| 色女孩综合影院| 天天爽夜夜爽夜夜爽精品视频| 精品视频一区二区不卡| 亚洲国产精品综合小说图片区| 91香蕉视频mp4| 午夜精品福利久久久| 精品国产乱码久久久久久蜜臀| 九九热在线视频观看这里只有精品| 精品久久久久av影院 | 日韩美女视频一区二区| 91视频一区二区| 丝瓜av网站精品一区二区 | 国产午夜三级一区二区三| 丁香另类激情小说| 亚洲成人自拍网| 欧美韩国日本综合| 欧美一区三区二区| 99久久99久久综合| 精品亚洲免费视频| 亚洲一区中文日韩| 中文字幕精品—区二区四季| 91亚洲精华国产精华精华液| 日韩av一区二区三区| 中文字幕亚洲视频| 欧美一区二区三区人| 成人毛片在线观看| 国产精品久久久久久福利一牛影视| 国产宾馆实践打屁股91| 亚洲自拍另类综合| 亚洲久本草在线中文字幕| 精品日韩成人av| 欧美一区二区视频在线观看| 成人av电影观看| 成人涩涩免费视频| 国内精品在线播放| 激情文学综合丁香| 国产自产高清不卡| 久久99精品国产.久久久久久| 丝袜亚洲另类欧美综合| 亚洲成人综合视频| 日韩国产在线观看| 日日摸夜夜添夜夜添精品视频| 亚洲综合区在线| 亚洲小说春色综合另类电影| 成人免费小视频| 亚洲免费在线视频一区 二区| 国产精品久久久久久户外露出 | 精品亚洲欧美一区|