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

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

?? msado15.tli

?? 利用ADO操作數(shù)據(jù)庫
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (10a132db).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library D:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 09/18/06 at 09:16:57 - 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一区二区三区免费野_久草精品视频
91麻豆国产福利精品| 亚洲精品美国一| 精品福利av导航| 91精品国产入口| 91精品国产综合久久婷婷香蕉 | 国产精品综合视频| 麻豆91精品视频| 久久电影网站中文字幕| 久久精品久久99精品久久| 日韩av一二三| 麻豆91在线播放| 国产91丝袜在线播放九色| 精品久久人人做人人爽| 日韩美女一区二区三区四区| 日韩视频在线永久播放| 2024国产精品视频| 国产丝袜在线精品| 亚洲欧美视频在线观看视频| 亚洲成人自拍网| 欧美aaa在线| 国产精品系列在线观看| heyzo一本久久综合| 色菇凉天天综合网| 欧美高清一级片在线| 精品99一区二区| 国产精品久久久久影院亚瑟| 亚洲三级在线观看| 日本美女一区二区三区视频| 国产一区二区视频在线| 福利视频网站一区二区三区| 91九色02白丝porn| 欧美一二三四区在线| 亚洲国产高清aⅴ视频| 亚洲免费电影在线| 免费观看在线综合| 成人夜色视频网站在线观看| 欧美在线观看视频一区二区 | 亚洲尤物视频在线| 蜜臀av性久久久久蜜臀aⅴ流畅 | 在线观看亚洲a| 欧美不卡一区二区| 中文字幕在线观看不卡| 亚洲6080在线| 成人污污视频在线观看| 欧美亚洲丝袜传媒另类| 日韩欧美国产小视频| 国产精品久久久久影视| 婷婷亚洲久悠悠色悠在线播放 | 日韩免费性生活视频播放| 国产精品三级av| 五月综合激情网| 国产福利精品导航| 欧美日韩亚洲丝袜制服| 久久精子c满五个校花| 亚洲影视在线播放| 国产91精品精华液一区二区三区| 色av综合在线| 久久蜜桃香蕉精品一区二区三区| 一区二区三区久久| 国产精品一卡二| 777午夜精品免费视频| 国产精品白丝在线| 久久www免费人成看片高清| 91在线观看下载| 精品99久久久久久| 日日噜噜夜夜狠狠视频欧美人| 成人a级免费电影| 午夜国产不卡在线观看视频| 国产91精品一区二区麻豆网站| 91精品国产高清一区二区三区| 国产精品久久久久毛片软件| 久久精品国产成人一区二区三区| 在线视频一区二区免费| 国产精品色噜噜| 国产一区二区三区香蕉| 欧美精品日韩综合在线| 亚洲欧美怡红院| 国产二区国产一区在线观看| 欧美一区二区三区在线| 一区二区三区 在线观看视频| 国产91精品露脸国语对白| 精品国产伦一区二区三区观看体验| 亚洲一区二区三区四区五区黄| 成人18视频日本| 欧美极品少妇xxxxⅹ高跟鞋| 国内精品久久久久影院薰衣草| 555www色欧美视频| 亚洲444eee在线观看| 欧美三片在线视频观看| 亚洲一线二线三线久久久| 色婷婷国产精品| 自拍偷拍国产亚洲| 91在线观看地址| 亚洲欧洲日韩av| 91视视频在线直接观看在线看网页在线看| 久久综合网色—综合色88| 美女视频黄 久久| 日韩午夜小视频| 美女精品一区二区| 精品国产1区2区3区| 久久99九九99精品| 精品久久一区二区| 国产一区二区三区免费播放| 欧美精品一区二区三区久久久| 免费观看成人av| 欧美成人精品1314www| 另类欧美日韩国产在线| 精品少妇一区二区三区日产乱码 | 国产精品麻豆网站| 成人91在线观看| 亚洲精品视频在线| 欧美伊人精品成人久久综合97| 亚洲影视在线播放| 制服丝袜一区二区三区| 日韩av成人高清| 精品国产欧美一区二区| 丁香网亚洲国际| 最新国产精品久久精品| 欧美综合色免费| 日日夜夜精品视频免费| 久久日韩粉嫩一区二区三区| 盗摄精品av一区二区三区| 亚洲欧美激情插| 亚洲欧美日韩国产成人精品影院| 日本韩国视频一区二区| 亚洲一区二区成人在线观看| 555www色欧美视频| 国内精品写真在线观看| 欧美国产精品久久| 色网站国产精品| 日韩电影一区二区三区| 国产偷国产偷精品高清尤物 | 欧美二区在线观看| 久色婷婷小香蕉久久| 国产欧美一区二区精品久导航| 一本一本久久a久久精品综合麻豆| 亚洲午夜久久久久久久久久久| 日韩视频免费观看高清完整版| 国产精品亚洲一区二区三区在线| 中文字幕中文字幕中文字幕亚洲无线 | 美女视频第一区二区三区免费观看网站 | 在线综合+亚洲+欧美中文字幕| 国产一区二区三区四区五区美女 | 成人动漫视频在线| 亚洲一区在线观看免费| 日韩欧美黄色影院| 99vv1com这只有精品| 婷婷成人激情在线网| 久久精品一区二区三区不卡牛牛 | 欧美在线短视频| 极品美女销魂一区二区三区 | 韩国女主播成人在线观看| 中文字幕亚洲在| 欧美一区二区三区四区视频 | 国产片一区二区三区| 在线这里只有精品| 国产一区二区三区免费看 | 不卡视频免费播放| 午夜欧美一区二区三区在线播放| 国产女主播在线一区二区| 欧美少妇xxx| 丰满少妇久久久久久久| 午夜在线电影亚洲一区| 欧美国产欧美综合| 3d成人h动漫网站入口| 99视频精品免费视频| 久久精品国产99国产| 亚洲激情网站免费观看| 久久奇米777| 91精品国产综合久久精品app | 久久综合五月天婷婷伊人| 欧美在线观看18| 精品区一区二区| 欧美日韩一区视频| 91香蕉视频mp4| 粉嫩在线一区二区三区视频| 免费久久99精品国产| 亚洲一区av在线| 1024亚洲合集| 国产视频一区在线播放| 精品少妇一区二区三区日产乱码| 欧美日韩中文一区| 色综合亚洲欧洲| 粉嫩蜜臀av国产精品网站| 麻豆成人久久精品二区三区红| 亚洲免费观看视频| 国产精品免费丝袜| 久久精品一区二区三区av| 日韩三级在线免费观看| 欧美日韩五月天| 在线视频综合导航| 色域天天综合网| 色综合久久88色综合天天6| bt欧美亚洲午夜电影天堂| 国产精品1区二区.| 国产精品自在在线| 久久国产精品99久久久久久老狼| 天天影视色香欲综合网老头| 亚洲二区在线观看| 亚洲国产一区二区三区青草影视 |