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

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

?? msado15.tli

?? 本程序界面采用基于對話框技術,并用ADO數據庫技術
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (4d639f5b).
//
// d:\畢業設計--\葛釗釗\教師考核系統\ado編程資料\ado&vc編程-5.15\ado數據庫例子\ado數據庫例子\vchomework\debug\msado15.tli
//
// Wrapper implementations for Win32 type library c:\program files\common files\system\ado\msado15.dll
// compiler-generated file created 05/21/09 at 20:15:32 - 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一区二区三区免费野_久草精品视频
久久爱另类一区二区小说| 成人一区二区三区在线观看 | 高潮精品一区videoshd| 国产一区二区三区观看| 成人激情午夜影院| 91蜜桃视频在线| 91精品国产一区二区三区蜜臀 | 欧美三区在线观看| 欧美一级专区免费大片| 欧美成va人片在线观看| 国产丝袜在线精品| 亚洲视频免费在线| 精品系列免费在线观看| 不卡视频免费播放| 日韩欧美一区在线观看| 国产欧美日韩卡一| 亚洲一二三四久久| 精品一区二区三区在线播放| 成人免费av在线| 欧美伦理影视网| 亚洲欧洲av另类| 黄一区二区三区| 国产69精品一区二区亚洲孕妇| 国产一级精品在线| 欧美日产在线观看| 国产精品高潮呻吟| 美国精品在线观看| 国产精品久久久久影视| 日韩和的一区二区| 在线看国产一区| 亚洲日本va午夜在线电影| 精品一区二区免费在线观看| 欧美日本高清视频在线观看| 一区视频在线播放| 成人午夜视频网站| 久久―日本道色综合久久| 三级在线观看一区二区| 日本黄色一区二区| 亚洲品质自拍视频| 成人精品视频一区| 国产精品护士白丝一区av| 国产高清在线精品| 国产午夜亚洲精品羞羞网站| 国产一区二区在线视频| 欧美tk—视频vk| 国产一区福利在线| 国产日产欧美一区| 成人免费精品视频| 国产精品第四页| 欧美综合色免费| 午夜精品久久久| 日韩午夜电影av| 极品少妇xxxx精品少妇偷拍| 久久久久久影视| 91最新地址在线播放| 一区二区三区中文字幕电影| 欧洲精品在线观看| 视频一区免费在线观看| 久久人人爽爽爽人久久久| 国产精品一卡二卡| 一区二区在线观看不卡| 欧美一区二区三区成人| 亚洲黄色录像片| 91免费视频观看| 日本亚洲三级在线| 一区二区三区欧美久久| 91丨九色丨蝌蚪丨老版| 日本va欧美va精品发布| 久久久久久久电影| 欧美性一二三区| 国产一区二区三区观看| 一区二区三区欧美视频| 亚洲精品一线二线三线| 色综合久久久久| 国产精品1024| 麻豆精品在线播放| 亚洲一区二区三区四区中文字幕 | 成人99免费视频| 日本亚洲天堂网| 亚洲自拍另类综合| 欧美激情一区二区| 欧美精品一区二区三区在线播放| 99r精品视频| 国产精品综合一区二区三区| 五月天一区二区| 亚洲精品五月天| 亚洲天堂av老司机| 国产欧美综合在线观看第十页| 91麻豆精品国产无毒不卡在线观看| 成人av电影免费观看| 国产一区二区网址| 久久99国产精品久久| 日韩福利视频导航| 亚洲黄色在线视频| 亚洲同性同志一二三专区| 国产女人水真多18毛片18精品视频| 欧美精品一区二区三区在线| 欧美一级国产精品| 欧美大片在线观看一区| 日韩一区二区三区四区| 日韩欧美成人一区二区| 欧美丰满美乳xxx高潮www| 欧美精品黑人性xxxx| 欧美理论电影在线| 色综合视频在线观看| 国产精品乡下勾搭老头1| 国产一区中文字幕| 东方欧美亚洲色图在线| 成人小视频免费在线观看| 国产成人午夜99999| av激情成人网| 欧美日韩一区高清| 日韩精品一区二区三区中文不卡 | 综合久久久久综合| 一区二区三区在线免费| 日韩精品电影在线观看| 国产在线视频不卡二| 成人av在线播放网址| 欧美在线999| 欧美另类z0zxhd电影| 欧美tickling网站挠脚心| 国产精品萝li| 婷婷综合五月天| 国产精品亚洲а∨天堂免在线| 色综合天天综合色综合av| 6080国产精品一区二区| 国产日韩精品一区| 亚洲高清免费观看高清完整版在线观看| 亚洲 欧美综合在线网络| 国产一区二区三区高清播放| 日本电影欧美片| 久久夜色精品一区| 午夜欧美视频在线观看| 不卡影院免费观看| 欧美变态口味重另类| 亚洲图片欧美视频| av一区二区三区四区| 欧美大片拔萝卜| 亚洲成人久久影院| 91色婷婷久久久久合中文| 欧美成人激情免费网| 亚洲国产精品久久人人爱蜜臀| 国产福利一区二区| 欧美变态凌虐bdsm| 免费看精品久久片| 欧美伦理电影网| 五月天一区二区三区| 日本福利一区二区| 一区二区不卡在线视频 午夜欧美不卡在 | 欧美三级在线视频| 精品动漫一区二区三区在线观看| 亚洲成av人片一区二区三区 | 欧美一级精品在线| 五月天久久比比资源色| 欧美日韩国产经典色站一区二区三区 | 日韩成人伦理电影在线观看| 在线免费视频一区二区| 亚洲日本一区二区| 91麻豆国产精品久久| 一区二区三区在线免费| 色成人在线视频| 亚洲va国产va欧美va观看| 91无套直看片红桃| 丝瓜av网站精品一区二区| 日韩午夜在线影院| 国产毛片精品一区| 亚洲人成小说网站色在线| 91一区二区在线观看| 亚洲影院理伦片| 日韩欧美在线123| 91影院在线观看| 五月婷婷久久丁香| 久久久噜噜噜久噜久久综合| 丁香婷婷综合网| 亚洲高清免费在线| 久久精品亚洲麻豆av一区二区 | 精品国产成人系列| 一本色道a无线码一区v| 青青草原综合久久大伊人精品 | 日韩精品一区二区三区中文不卡 | 91福利社在线观看| 精品一区二区av| 亚洲一区二区视频| 中日韩av电影| 日韩一二在线观看| 色菇凉天天综合网| 成人在线综合网站| 蜜臀久久久99精品久久久久久| 国产精品国产精品国产专区不片| 欧美一级久久久久久久大片| 91论坛在线播放| 人妖欧美一区二区| 欧美www视频| 欧美日韩亚洲高清一区二区| 国产一区二区三区综合| 日本三级韩国三级欧美三级| 一区二区三区日韩精品视频| 欧美激情自拍偷拍| 精品久久人人做人人爰| 欧美绝品在线观看成人午夜影视|