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

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

?? msado15.tli

?? 數(shù)據(jù)庫開發(fā)
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8447.0 (14680243).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 01/17/08 at 19:50:11 - 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
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产成人一级电影| 日欧美一区二区| 99久久婷婷国产| 国产精品对白交换视频| 在线免费av一区| 日韩高清在线电影| 久久精品日韩一区二区三区| 高清在线成人网| 中文字幕一区二| 欧美日韩一区二区在线观看 | 中文字幕中文字幕在线一区| 99国产精品国产精品久久| 亚洲狠狠爱一区二区三区| 欧美一区二区三区免费观看视频| 黄色成人免费在线| 中文字幕中文字幕一区二区| 欧美日韩色综合| 国产一区二区三区黄视频 | 欧美亚洲尤物久久| 蜜桃久久久久久久| 国产精品成人在线观看| 欧美丰满少妇xxxbbb| 国产一区在线观看麻豆| 亚洲精品国久久99热| 日韩欧美国产一区在线观看| 成人黄色在线视频| 日韩电影免费在线观看网站| 日本一区二区三级电影在线观看| 日本道免费精品一区二区三区| 麻豆成人91精品二区三区| 中文字幕在线不卡| 日韩美女一区二区三区四区| bt欧美亚洲午夜电影天堂| 视频一区国产视频| 亚洲欧美中日韩| 日韩免费看的电影| 精品视频在线视频| 99这里只有久久精品视频| 免费在线观看精品| 亚洲精品欧美在线| 国产日韩影视精品| 日韩免费电影一区| 欧美日韩国产不卡| 99久久精品国产观看| 韩日av一区二区| 图片区小说区区亚洲影院| 亚洲欧洲av在线| 26uuu成人网一区二区三区| 欧美精品丝袜中出| 欧美中文字幕一区二区三区亚洲| 国产精品66部| 奇米四色…亚洲| 五月天中文字幕一区二区| 亚洲日本免费电影| 国产精品久久久久一区二区三区共| 日韩精品在线网站| 欧美久久久久免费| 欧美日韩高清一区二区不卡| 一本色道久久综合精品竹菊| 国产a区久久久| 国产伦精品一区二区三区免费 | 欧美成人一区二区三区片免费 | 国产成a人亚洲精品| 极品销魂美女一区二区三区| 亚洲成人免费电影| 亚洲欧美成aⅴ人在线观看| 国产嫩草影院久久久久| 国产欧美综合在线观看第十页 | 成人爱爱电影网址| 成人免费的视频| 国产91精品入口| 国产91丝袜在线播放| 国产一级精品在线| 国产成人在线观看免费网站| 国内精品国产成人| 国产成人综合在线| 国产成人在线视频网址| 国产精品中文字幕欧美| 国产精品羞羞答答xxdd| 国产成人av一区| 国产91富婆露脸刺激对白| 成人av动漫网站| 色综合色综合色综合| 在线观看国产日韩| 777午夜精品免费视频| 91精品国产综合久久久蜜臀粉嫩| 7777精品伊人久久久大香线蕉经典版下载 | 91视频国产观看| 欧美亚日韩国产aⅴ精品中极品| 色婷婷久久综合| 欧美日韩国产免费一区二区| 日韩一级高清毛片| 国产亚洲短视频| 中文字幕在线不卡一区二区三区| 亚洲狼人国产精品| 日韩av一二三| 国产一区二区影院| 色综合网色综合| 欧美精品在线视频| 国产视频一区在线观看| 亚洲品质自拍视频| 免费在线观看精品| 成人午夜看片网址| 欧美日韩国产一级二级| 欧美sm美女调教| 国产精品久久久久一区二区三区| 亚洲国产一区二区三区青草影视| 蜜桃视频在线一区| 成人h版在线观看| 欧美日韩一区二区电影| 久久久久久久精| 亚洲激情第一区| 久久97超碰色| 色天使色偷偷av一区二区| 在线91免费看| 国产精品素人视频| 日韩av电影一区| eeuss鲁片一区二区三区在线观看| 欧美视频中文字幕| 中文字幕免费一区| 日韩电影网1区2区| 91免费看视频| www激情久久| 亚洲国产精品影院| 成人免费高清视频| 欧美电视剧免费全集观看| |精品福利一区二区三区| 久久99精品久久久久久| 欧美综合亚洲图片综合区| 久久免费电影网| 婷婷综合在线观看| 97久久超碰精品国产| 久久久久国产精品人| 日本vs亚洲vs韩国一区三区| 99国产精品国产精品毛片| 久久精品视频一区| 老司机精品视频线观看86| 欧美视频在线不卡| 亚洲丝袜美腿综合| 国产成人午夜精品5599| 精品免费99久久| 手机精品视频在线观看| 欧美在线一二三| 亚洲女同一区二区| 成人黄色av电影| 国产午夜精品久久久久久久| 美女视频黄 久久| 91精品国产一区二区三区| 亚洲国产欧美一区二区三区丁香婷| 99久久伊人精品| 日本一区二区动态图| 国产精品一区久久久久| 日韩欧美一级在线播放| 视频一区二区不卡| 欧美日本在线看| 婷婷久久综合九色综合伊人色| 色老综合老女人久久久| 亚洲欧美激情小说另类| 91亚洲精品久久久蜜桃网站| 国产精品色一区二区三区| 成人爽a毛片一区二区免费| 国产婷婷色一区二区三区 | 亚洲va韩国va欧美va精品 | 白白色 亚洲乱淫| 国产精品国产三级国产a| 国产成人精品综合在线观看| 国产欧美日韩视频在线观看| 国产成人激情av| 国产精品网站一区| 色综合久久久久综合体| 一区二区三区影院| 欧美日高清视频| 日本欧美久久久久免费播放网| 91精品国产欧美日韩| 毛片不卡一区二区| 久久久精品国产免大香伊| 国产v综合v亚洲欧| 亚洲欧美偷拍三级| 精品视频全国免费看| 秋霞影院一区二区| 国产网站一区二区三区| 99视频热这里只有精品免费| 伊人婷婷欧美激情| 91麻豆精品国产91久久久久久| 日韩在线卡一卡二| 精品国产1区二区| 成人激情视频网站| 亚洲第一会所有码转帖| 精品国产区一区| 成人蜜臀av电影| 亚洲国产欧美在线| 精品美女在线观看| 成人av网站免费| 五月综合激情婷婷六月色窝| 精品国产免费视频| 91麻豆福利精品推荐| 青青草视频一区| 亚洲欧美影音先锋| 91精品在线观看入口| 国产福利91精品|