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

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

?? msado15.tli

?? 是自己做的一個小的學生管理系統.希望對大家有用
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// 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;
}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色欧美乱欧美15图片| 高清国产一区二区三区| 精品成人一区二区三区| 成人在线综合网| 亚洲成人自拍一区| 国产清纯白嫩初高生在线观看91 | 精品在线观看免费| 中文字幕亚洲一区二区va在线| 在线免费不卡电影| 国产真实乱偷精品视频免| 亚洲gay无套男同| 欧美经典一区二区三区| 欧美一区二区啪啪| 91麻豆精品秘密| 精品一区二区在线播放| 日日噜噜夜夜狠狠视频欧美人| 久久免费偷拍视频| 日韩一区二区在线免费观看| 91美女精品福利| 高清不卡在线观看av| 麻豆精品久久久| 亚洲一区二区欧美日韩| 亚洲欧美在线另类| www一区二区| 日韩西西人体444www| 欧美中文字幕一区| 成人亚洲一区二区一| 国产高清精品久久久久| 日本不卡不码高清免费观看| 亚洲第一久久影院| 亚洲欧美日韩国产另类专区 | 国产精品国产a| 精品国产免费人成电影在线观看四季 | 91欧美一区二区| 国产风韵犹存在线视精品| 免费一级欧美片在线观看| 亚洲v中文字幕| 一区二区三区中文字幕| 亚洲欧美日韩中文播放| 国产精品电影院| 欧美一卡二卡三卡| 欧美一级黄色大片| 欧美日韩五月天| 欧美另类一区二区三区| 欧美吞精做爰啪啪高潮| 在线免费精品视频| 91啦中文在线观看| jlzzjlzz亚洲女人18| 99re这里只有精品首页| 成人激情文学综合网| 成人精品国产福利| 成人99免费视频| 国产精品白丝av| 国产1区2区3区精品美女| 六月丁香综合在线视频| 蜜桃av一区二区三区电影| 日韩高清不卡一区二区三区| 美女尤物国产一区| 免费高清在线一区| 国产精品一区二区在线观看不卡| 经典一区二区三区| 成人性生交大片免费看中文网站| 成人综合在线网站| 国产高清精品久久久久| 一本大道久久a久久精二百| 91免费在线视频观看| 欧美日韩一区精品| 欧美精品视频www在线观看| 日韩精品一区国产麻豆| 久久美女高清视频| 国产午夜精品一区二区| 亚洲综合成人网| 午夜视频一区在线观看| 国产一区二区三区精品欧美日韩一区二区三区| 激情欧美一区二区三区在线观看| 国产在线视频一区二区| 成人黄色小视频| 色婷婷精品大视频在线蜜桃视频| 欧美美女一区二区| 精品成人佐山爱一区二区| 中文字幕中文字幕一区| 亚洲色图欧美偷拍| 日韩激情在线观看| 国产一区二区按摩在线观看| 99国产精品国产精品久久| 欧美日韩色综合| 亚洲国产高清aⅴ视频| 亚洲欧美日韩国产手机在线 | 26uuu精品一区二区在线观看| 亚洲欧洲一区二区三区| 亚洲国产wwwccc36天堂| 国产经典欧美精品| 在线视频欧美区| 欧美电影免费观看高清完整版在线观看| 欧美变态tickling挠脚心| 国产精品污网站| 五月婷婷综合网| 国产精品一卡二| 欧美性生活久久| 久久色在线观看| 亚洲成av人**亚洲成av**| 国产一区二区三区四区五区入口| 欧美在线短视频| 国产午夜亚洲精品不卡| 亚洲成av人片一区二区三区| 国产成人啪免费观看软件| 欧美日韩一区不卡| 国产欧美日韩综合精品一区二区| 亚洲第一搞黄网站| 99re亚洲国产精品| 久久精品夜夜夜夜久久| 首页国产丝袜综合| 亚州成人在线电影| 91一区二区三区在线观看| 日韩午夜电影在线观看| 性欧美大战久久久久久久久| 国产91丝袜在线播放九色| 日韩视频不卡中文| 亚洲一区二区三区三| 91视频www| 国产精品丝袜91| 精品一区二区三区香蕉蜜桃| 欧美日韩精品欧美日韩精品一| 国产精品大尺度| 成人激情小说网站| 久久久美女毛片| 精品一二三四在线| 欧美二区乱c少妇| 一区二区在线观看av| 99天天综合性| 国产三级欧美三级日产三级99| 亚洲成人综合视频| 欧美乱熟臀69xxxxxx| 亚洲女同女同女同女同女同69| 99久久精品情趣| 中文字幕欧美三区| 成人av电影在线观看| 久久免费国产精品| 久久99热这里只有精品| 欧美一区二区视频观看视频| 一区二区不卡在线视频 午夜欧美不卡在| 免费不卡在线视频| 69av一区二区三区| 亚洲成av人片一区二区| 日本道免费精品一区二区三区| 国产精品久久免费看| 国产乱码精品一区二区三| 久久久国产精华| 极品美女销魂一区二区三区免费| 精品久久久久久久久久久久久久久| 日韩国产精品91| 久久久91精品国产一区二区精品 | 欧美日本一区二区| 亚洲女同ⅹxx女同tv| 欧美伊人精品成人久久综合97 | 洋洋成人永久网站入口| 欧美午夜片在线看| 五月激情综合婷婷| 欧美大黄免费观看| 国产真实乱子伦精品视频| 欧美国产一区二区在线观看| 粉嫩蜜臀av国产精品网站| 欧美日韩久久一区二区| 乱中年女人伦av一区二区| 欧美电影免费观看高清完整版| 国产盗摄一区二区| 国产精品素人视频| 欧美午夜精品久久久| 日本成人在线网站| 久久精品亚洲国产奇米99| 成人午夜电影久久影院| 国产精品久久久久久久久久免费看| 91小视频在线观看| 亚洲视频在线观看三级| 4438亚洲最大| 国产成人一级电影| 亚洲国产精品视频| 日韩三级av在线播放| kk眼镜猥琐国模调教系列一区二区| 亚洲女与黑人做爰| 日韩精品一区二区三区老鸭窝| 国产 欧美在线| 亚洲观看高清完整版在线观看| 91精品国产综合久久国产大片| 国产另类ts人妖一区二区| √…a在线天堂一区| 欧美大片一区二区三区| www.久久精品| 精品一区二区在线免费观看| 综合久久一区二区三区| 欧美sm极限捆绑bd| k8久久久一区二区三区| 亚洲成av人片www| 亚洲国产精品t66y| 日韩一级成人av| 99久久er热在这里只有精品66| 蜜桃免费网站一区二区三区| 国产欧美一区二区三区网站| 在线成人免费视频| 成人av网站在线|