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

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

?? msado15.tli

?? 一個ADO連SQL Server數據庫的實例
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (2764df43).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 04/06/04 at 14:14:52 - 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, long 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久久精品国产一区二区三区| 国产精品麻豆一区二区| 91猫先生在线| 丝袜美腿亚洲综合| 久久奇米777| 欧美最猛性xxxxx直播| 欧美精品一区在线观看| 综合av第一页| 风间由美一区二区av101| 亚洲国产精品久久人人爱蜜臀| 成人黄色a**站在线观看| 中文字幕不卡在线| 欧美精品久久一区| 国产一区在线观看麻豆| 自拍偷自拍亚洲精品播放| 色综合久久久久久久久| 日本一不卡视频| 一区二区三区高清| 欧美日韩精品久久久| 韩国毛片一区二区三区| 亚洲人成伊人成综合网小说| 欧美日韩五月天| 极品少妇一区二区三区精品视频 | 亚洲一区在线视频| 日韩一二三四区| 国产高清不卡一区二区| 久久精品国产亚洲高清剧情介绍| 亚洲欧洲美洲综合色网| 国产视频一区二区三区在线观看| 日本丰满少妇一区二区三区| 久久99精品国产麻豆不卡| 久久精品一区四区| 日韩视频国产视频| 欧美高清一级片在线| 欧美性生活大片视频| 99精品视频一区| 成人午夜精品一区二区三区| 国产黑丝在线一区二区三区| 国产精品一区二区在线看| 日本视频免费一区| 午夜av一区二区三区| 午夜电影网亚洲视频| 三级欧美韩日大片在线看| 亚洲男人的天堂av| 亚洲一线二线三线视频| 亚洲手机成人高清视频| 亚洲愉拍自拍另类高清精品| 亚洲成人av免费| 国产高清一区日本| 欧美伦理电影网| 国产片一区二区三区| 亚洲香肠在线观看| 国产麻豆精品theporn| 一本色道久久综合亚洲aⅴ蜜桃 | 色网站国产精品| 日韩欧美国产一二三区| 亚洲欧洲日产国产综合网| 五月婷婷激情综合网| 国产大陆a不卡| 7777精品伊人久久久大香线蕉完整版 | 91精品国产日韩91久久久久久| 337p日本欧洲亚洲大胆精品 | 国产精品久久久久毛片软件| 蜜桃视频一区二区| 在线观看国产91| 136国产福利精品导航| 国产乱对白刺激视频不卡| 欧美狂野另类xxxxoooo| 综合精品久久久| 成人毛片在线观看| 国产精品久久久久久久久晋中| 精品一区二区三区香蕉蜜桃| 4hu四虎永久在线影院成人| 亚洲精品亚洲人成人网在线播放| 国产专区综合网| 欧美一级一级性生活免费录像| 亚洲一区二区三区中文字幕| 久久99国内精品| 欧美亚洲日本一区| 亚洲电影一级片| 在线观看视频一区二区| 日韩一区精品视频| 91精品久久久久久久久99蜜臂| 亚洲综合色成人| 欧美日本在线观看| 裸体一区二区三区| 欧美婷婷六月丁香综合色| 亚洲精品欧美激情| 欧美午夜精品一区| 视频一区二区不卡| 日韩欧美一区在线观看| 日本特黄久久久高潮| 日韩美女主播在线视频一区二区三区| 亚洲国产精品一区二区www| 欧美日韩精品欧美日韩精品一综合| 亚洲乱码一区二区三区在线观看| 国产精品2024| 亚洲精品日韩一| 日韩一级高清毛片| 国产精品自拍三区| 中文字幕五月欧美| 51精品秘密在线观看| 国精产品一区一区三区mba桃花 | 在线欧美一区二区| 日韩精品一级中文字幕精品视频免费观看| 欧洲av一区二区嗯嗯嗯啊| 亚洲国产精品一区二区久久| 日韩小视频在线观看专区| 成人午夜在线视频| 三级欧美在线一区| 亚洲天堂网中文字| 日韩精品一区二区三区老鸭窝| av电影在线观看不卡| 国产精品主播直播| 视频一区二区欧美| 亚洲一区中文在线| 亚洲精品久久久蜜桃| 中文字幕乱码久久午夜不卡| 久久这里只有精品首页| 欧美在线视频你懂得| 成人午夜精品在线| 国产91在线看| 国产成人av一区二区三区在线 | 亚洲一区二区美女| 国产亚洲一区二区三区在线观看| 制服丝袜激情欧洲亚洲| 欧美日韩日日夜夜| 欧美午夜一区二区三区免费大片| www.成人网.com| 成人性生交大片免费看在线播放| 国内外成人在线| 极品少妇一区二区| 丁香网亚洲国际| 99这里都是精品| 91久久精品一区二区三区| 99精品在线观看视频| 色94色欧美sute亚洲线路二| 91丨porny丨户外露出| 色综合久久88色综合天天| 日本乱人伦aⅴ精品| 欧美图区在线视频| 精品少妇一区二区三区日产乱码 | 亚洲另类在线视频| 亚洲国产一区二区a毛片| 亚洲一区二区三区在线播放| 日韩经典中文字幕一区| 三级久久三级久久久| 国产做a爰片久久毛片| 国产成人综合在线观看| eeuss国产一区二区三区| 欧美三级蜜桃2在线观看| 欧美一级在线免费| 国产精品午夜电影| 亚洲在线观看免费视频| 美女看a上一区| 99国产精品国产精品毛片| 在线观看日韩高清av| 2022国产精品视频| 亚洲国产精品一区二区尤物区| 国产在线精品不卡| 在线亚洲一区观看| 欧美激情一区不卡| 国产一区二区调教| 制服.丝袜.亚洲.中文.综合| 国产女人aaa级久久久级| 青青草国产成人av片免费| 91蝌蚪porny| 欧美国产日韩一二三区| 日韩二区三区在线观看| 在线免费视频一区二区| 亚洲男人天堂av网| 91在线观看一区二区| 日本一区二区动态图| 国产精品一区二区三区网站| 日韩精品中文字幕一区二区三区| 亚洲乱码国产乱码精品精可以看 | 国产成人精品免费在线| 久久久久久久一区| 高清日韩电视剧大全免费| 欧美激情一区在线| 成人免费视频一区二区| 中文字幕免费一区| 色婷婷激情久久| 亚洲精品国产a久久久久久| 91国产免费观看| 秋霞电影一区二区| 久久久久久电影| www.亚洲色图|