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

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

?? msado15.tli

?? 用C++基于SQL SERVER使用存儲(chǔ)過程
?? TLI
?? 第 1 頁 / 共 5 頁
字號(hào):
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (ea61aaa1).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library c:\program files\common files\system\ado\msado15.dll
// compiler-generated file created 12/15/04 at 22:31:42 - 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
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品国久久99热| 日本美女一区二区三区视频| 欧美成人伊人久久综合网| 日本不卡高清视频| 国产精品久久久久久妇女6080| 欧美高清视频一二三区 | 国产精品视频yy9299一区| 欧美影院一区二区| 国产成人精品影院| 免费看精品久久片| 亚洲精品一二三区| 欧美极品aⅴ影院| 制服.丝袜.亚洲.中文.综合| 成人av在线电影| 激情文学综合插| 天天免费综合色| 亚洲裸体在线观看| 国产日韩视频一区二区三区| 日韩一区二区三区电影在线观看| 99久久精品久久久久久清纯| 国产一区二区三区| 日韩av网站在线观看| 亚洲一区二区av电影| 中文字幕中文字幕一区| 久久久久久麻豆| 日韩一区二区三区高清免费看看| 欧美日韩国产一区二区三区地区| 91在线观看地址| www.日韩精品| fc2成人免费人成在线观看播放| 国产毛片精品视频| 国产一区欧美日韩| 精品午夜久久福利影院| 美女视频网站久久| 麻豆一区二区99久久久久| 三级久久三级久久久| 亚洲成av人片一区二区| 亚洲国产精品久久人人爱蜜臀| 亚洲黄一区二区三区| 亚洲欧美日韩中文播放| 天天av天天翘天天综合网色鬼国产 | 911精品产国品一二三产区| 欧洲视频一区二区| 在线观看欧美精品| 欧美亚洲国产怡红院影院| 91成人在线观看喷潮| 欧美性猛交一区二区三区精品| 欧美性一区二区| 欧美婷婷六月丁香综合色| 欧美日本一区二区三区四区| 91麻豆精品国产91| 日韩欧美一级二级三级久久久| 日韩午夜激情电影| 久久久影院官网| 国产精品免费aⅴ片在线观看| 国产精品成人网| 一区二区三区蜜桃| 五月天激情综合网| 麻豆视频观看网址久久| 国产一区二区三区四| 成人av在线影院| 91久久免费观看| 欧美久久一二区| 欧美成人国产一区二区| 日本一区二区视频在线观看| 国产精品电影院| 亚洲国产精品一区二区尤物区| 午夜精品福利一区二区三区蜜桃| 老司机一区二区| 亚洲欧美国产三级| 国产精品久久久久久久久动漫| 一区二区视频免费在线观看| 精品国产一区二区三区av性色| 久久久久久久久久看片| 中文字幕一区二区三区在线不卡 | 欧美亚洲禁片免费| 欧美一区二区高清| 国产三级精品视频| 亚洲精品成人悠悠色影视| 亚洲v精品v日韩v欧美v专区| 精品国产1区2区3区| 久久91精品久久久久久秒播| 精品一区二区在线视频| av资源网一区| 在线成人小视频| 日本一区二区三级电影在线观看| 亚洲精品视频观看| 美国十次了思思久久精品导航| 风流少妇一区二区| 欧美日本一区二区三区| 欧美激情一区二区三区四区| 亚洲成av人影院| 成人免费毛片嘿嘿连载视频| 欧美日本一区二区三区四区| 欧美激情一区二区三区在线| 视频一区视频二区中文字幕| 成人av高清在线| 欧美一区二区三区人| 亚洲欧美日韩国产另类专区| 久久精品国产精品青草| 91视频国产观看| 2023国产精华国产精品| 亚洲一区二区三区不卡国产欧美| 国产精品一区二区久激情瑜伽| 欧美综合久久久| 国产精品久线观看视频| 久久国产精品免费| 精品视频999| 中文字幕在线观看不卡| 国产制服丝袜一区| 欧美一区二区在线视频| 亚洲精品大片www| 99久久精品国产精品久久| www国产精品av| 奇米色777欧美一区二区| 色哟哟一区二区三区| 国产欧美一区二区精品仙草咪| 青青草国产成人99久久| 精品视频资源站| 亚洲精品videosex极品| www.一区二区| 国产精品久久久久久久久久久免费看| 激情欧美一区二区| 日韩一区和二区| 日韩av电影天堂| 欧美精品在线视频| 亚洲一区二区三区四区在线| 色综合久久久久综合99| 国产精品夫妻自拍| heyzo一本久久综合| 中文字幕不卡在线播放| 国产传媒欧美日韩成人| 久久日韩精品一区二区五区| 激情五月婷婷综合| 精品国产乱码久久久久久免费| 免费成人在线视频观看| 国产精品国产三级国产三级人妇 | 亚洲欧洲精品天堂一级| 高清不卡一区二区| 中文字幕免费一区| 成人白浆超碰人人人人| 中文字幕巨乱亚洲| 粉嫩一区二区三区在线看| 亚洲国产精品传媒在线观看| 国产成人精品在线看| 中文字幕成人网| 91农村精品一区二区在线| 亚洲欧美日韩国产手机在线| 色综合久久综合中文综合网| 一区二区欧美视频| 欧美男同性恋视频网站| 欧美96一区二区免费视频| 欧美精品一区二区三区高清aⅴ | 国产精品77777| 国产精品美女久久久久av爽李琼 | 天天亚洲美女在线视频| 91精品国产入口| 国产综合色视频| 中文字幕国产一区| 在线亚洲一区观看| 日韩av二区在线播放| 久久精品这里都是精品| bt欧美亚洲午夜电影天堂| 一级特黄大欧美久久久| 日韩无一区二区| 粉嫩av一区二区三区粉嫩| 亚洲免费视频成人| 51久久夜色精品国产麻豆| 久久97超碰国产精品超碰| 国产精品久久毛片a| 欧美日韩中文国产| 激情综合网最新| 国产精品久久久久久久岛一牛影视 | 久久久久久久久久看片| 91免费观看视频| 日韩激情在线观看| 国产欧美在线观看一区| 欧美午夜精品理论片a级按摩| 99久久久久久| 日韩av一二三| 国产精品成人一区二区艾草 | 91麻豆成人久久精品二区三区| 亚洲国产另类精品专区| 久久综合九色综合欧美98| 91在线视频免费观看| 日韩电影免费一区| 综合分类小说区另类春色亚洲小说欧美| 欧美日韩午夜在线视频| 国产成人av电影在线| 亚洲成人精品一区二区| 国产日产欧美一区二区三区| 欧美日韩午夜精品| va亚洲va日韩不卡在线观看| 日韩国产高清影视| 综合久久久久久| 久久久蜜桃精品| 欧美浪妇xxxx高跟鞋交| 99国产一区二区三精品乱码| 麻豆中文一区二区| 亚洲福利一区二区|