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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? msado15.tli

?? 是自己做的一個(gè)小的學(xué)生管理系統(tǒng).希望對(duì)大家有用
?? TLI
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (bad2bb27).
//
// g:\student211111111\debug\msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 04/08/09 at 19:50:37 - 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;
}

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
懂色av噜噜一区二区三区av| 在线观看中文字幕不卡| 欧美私模裸体表演在线观看| 国产精品亲子乱子伦xxxx裸| 韩国精品免费视频| 日韩视频免费观看高清完整版在线观看 | 91视频com| 亚洲色图清纯唯美| 99re视频精品| 一区二区久久久久| 一本色道久久综合精品竹菊| 亚洲精品中文字幕在线观看| 欧美日韩一区在线观看| 日韩中文字幕91| 51久久夜色精品国产麻豆| 日韩专区中文字幕一区二区| 亚洲欧洲精品天堂一级| 欧美视频一区二区三区| 成人国产精品视频| 亚洲天堂福利av| 久久久久免费观看| 福利电影一区二区| 久久99深爱久久99精品| 欧美成人a在线| 国产成人精品一区二区三区网站观看| 国产调教视频一区| 欧美性三三影院| 一本一本大道香蕉久在线精品 | 久久精品日产第一区二区三区高清版| 欧美美女视频在线观看| 激情欧美一区二区三区在线观看| 性做久久久久久久久| 日韩欧美精品在线| 95精品视频在线| 高清shemale亚洲人妖| 国产成人亚洲精品青草天美| 精品一区二区在线免费观看| 中文字幕亚洲精品在线观看| 国产欧美日韩综合精品一区二区| 欧美图区在线视频| 欧美亚洲免费在线一区| 欧美视频你懂的| 欧美日韩国产片| 风间由美一区二区av101| 国产呦精品一区二区三区网站| 一区二区三区久久| 一区二区三区中文字幕电影| 亚洲天堂2016| 亚洲综合图片区| 亚洲国产高清不卡| 欧美电影免费观看高清完整版在线 | 91麻豆精东视频| 色久综合一二码| 成人亚洲一区二区一| 亚洲电影激情视频网站| 午夜精品成人在线视频| 亚洲欧美视频在线观看视频| 精品欧美一区二区久久 | 国产欧美日本一区二区三区| 国产精品无人区| 亚洲天堂福利av| 亚洲成人手机在线| 久久草av在线| 成人av网站免费观看| 91麻豆免费视频| 欧美一区二区美女| 欧美日韩视频在线观看一区二区三区 | 中文字幕亚洲成人| 一区二区三区视频在线看| 一级中文字幕一区二区| 奇米色777欧美一区二区| 亚洲靠逼com| 日本一区中文字幕| 天堂蜜桃一区二区三区| 韩国女主播一区| 91麻豆国产自产在线观看| 3atv在线一区二区三区| 国产亚洲精久久久久久| 亚洲精品日韩专区silk| 免费精品99久久国产综合精品| 国产激情一区二区三区四区| 色一情一乱一乱一91av| 日韩欧美一级精品久久| 中文字幕一区二| 免费人成网站在线观看欧美高清| 国产成人av一区二区| 欧美体内she精视频| 久久精品一区二区三区av| 亚洲午夜激情av| 午夜精品一区二区三区免费视频 | 亚洲成人激情av| 国产一区二区精品久久99| 欧美影院午夜播放| 亚洲国产精品精华液ab| 日韩国产精品久久久| 波多野结衣在线一区| 国产98色在线|日韩| 欧美久久久久久蜜桃| 中文字幕在线观看不卡| 九九国产精品视频| 欧美系列在线观看| 国产女人水真多18毛片18精品视频| 亚洲国产精品久久久久秋霞影院| 国产精品一区一区三区| 国产91在线观看| 91精品国产综合久久久久| 综合久久国产九一剧情麻豆| 久久99久久精品| 欧美日韩激情在线| 国产精品高潮呻吟| 亚洲观看高清完整版在线观看| 国产一区二区三区| 欧美日韩色综合| 亚洲免费观看高清完整版在线观看熊| 国产精品自拍网站| 欧美mv和日韩mv国产网站| 亚洲午夜免费电影| 91在线免费播放| 国产精品无遮挡| 国产精品香蕉一区二区三区| 91精品福利在线一区二区三区| 一区二区三区在线观看视频| 成人免费视频播放| 久久精品夜色噜噜亚洲aⅴ| 日本午夜一本久久久综合| 欧美日韩在线三区| 亚洲一区在线观看免费观看电影高清| jvid福利写真一区二区三区| 久久九九久精品国产免费直播| 精品影视av免费| 欧美本精品男人aⅴ天堂| 麻豆精品视频在线观看免费| caoporen国产精品视频| 国产日韩亚洲欧美综合| 国产精品亚洲成人| 久久精品人人做| 国产成人av一区二区| 国产精品色婷婷| 不卡视频一二三| 国产精品国产三级国产aⅴ入口| www.亚洲色图| 日韩理论在线观看| 色综合久久天天| 一区二区三区日韩欧美| 欧美在线观看禁18| 亚洲成人自拍网| 日韩一区二区不卡| 精品在线观看视频| 国产欧美一区二区在线| 成人av免费网站| 亚洲综合成人在线视频| 精品视频免费看| 免费观看在线色综合| 精品99999| 日本三级韩国三级欧美三级| 欧美mv和日韩mv国产网站| 国产成人在线看| 亚洲靠逼com| 91精品国产91综合久久蜜臀| 免费观看成人av| 国产日韩亚洲欧美综合| 91亚洲精品久久久蜜桃网站 | 一区二区三区在线观看欧美| 欧美日韩精品三区| 九色综合狠狠综合久久| 亚洲国产成人私人影院tom| 91久久精品一区二区三区| 日日噜噜夜夜狠狠视频欧美人 | 国产精品亲子伦对白| 欧美午夜电影网| 久久99精品久久久久久| 国产精品久久久久久久久搜平片| 91玉足脚交白嫩脚丫在线播放| 亚洲18影院在线观看| 2020日本不卡一区二区视频| 免费成人结看片| 欧美经典一区二区三区| 欧美最新大片在线看| 精品在线亚洲视频| 一区二区三区在线观看动漫| 日韩一区二区三区观看| av不卡免费在线观看| 日本亚洲三级在线| 国产精品久久久久一区二区三区 | 欧美xxxxxxxx| 91免费版在线| 国产专区综合网| 亚洲成人av资源| 国产精品久久久久久久久免费相片 | 男男视频亚洲欧美| 中文字幕制服丝袜一区二区三区| 欧美日免费三级在线| 国产精品香蕉一区二区三区| 午夜欧美在线一二页| 国产精品区一区二区三区| 欧美一区永久视频免费观看| 99久精品国产| 国产精品一卡二卡在线观看| 香蕉乱码成人久久天堂爱免费| 精品国产免费一区二区三区香蕉|