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

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

?? msado15.tli

?? 數(shù)據(jù)庫管理程序
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (45a52162).
//
// msado15.tli
//
// Wrapper implementations for Win32 type library C:\Program Files\Common Files\System\ado\msado15.dll
// compiler-generated file created 11/28/03 at 09:13: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, 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;
}

inline HRESULT Connection15::RollbackTrans ( ) {

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色天使久久综合网天天| 亚洲女同ⅹxx女同tv| 国产午夜亚洲精品不卡| 国产精品理论在线观看| 一区二区欧美国产| 免费看欧美女人艹b| 国产高清视频一区| 在线看国产一区二区| 日韩欧美区一区二| 国产精品剧情在线亚洲| 日日夜夜精品免费视频| 国产suv一区二区三区88区| 在线一区二区视频| 亚洲精品一区二区三区蜜桃下载 | 精品无人区卡一卡二卡三乱码免费卡| 国产成人夜色高潮福利影视| 欧美性猛交xxxx乱大交退制版 | 国产高清不卡一区二区| 91国产丝袜在线播放| 精品成人在线观看| 亚洲欧美精品午睡沙发| 麻豆成人免费电影| 精品一区二区国语对白| 91一区二区三区在线观看| 欧美喷水一区二区| 国产精品久久三区| 91免费国产视频网站| 国产精品美女久久久久久| 日韩欧美一二区| 综合色天天鬼久久鬼色| 久久精品噜噜噜成人88aⅴ| 97久久超碰精品国产| 精品国偷自产国产一区| 亚洲精品成人精品456| 国产在线不卡一区| 欧美片在线播放| 一区二区三区欧美激情| 国产成人免费在线视频| 欧美一区二区视频网站| 一区二区三区在线视频播放| 高清不卡一区二区在线| 欧美mv日韩mv国产网站app| 亚洲综合丁香婷婷六月香| 粉嫩aⅴ一区二区三区四区| 日韩一区二区免费高清| 一区二区三区在线播放| 成人午夜在线播放| 精品欧美黑人一区二区三区| 午夜成人免费电影| 在线视频国产一区| 国产精品白丝在线| 国产精品白丝jk黑袜喷水| 日韩一区二区三区视频在线观看 | 91视视频在线观看入口直接观看www | 日韩亚洲欧美在线| 亚洲国产cao| 97精品超碰一区二区三区| 国产三级精品在线| 精品系列免费在线观看| 日韩欧美亚洲另类制服综合在线| 亚洲一区二区黄色| 色综合久久久久综合99| 中文字幕在线观看一区二区| 国产成人午夜精品5599 | 国产91在线观看| 精品久久国产97色综合| 免费一级欧美片在线观看| 欧美专区亚洲专区| 亚洲综合一区二区精品导航| 一本色道久久综合亚洲91| 国产精品国产三级国产普通话99| 高清成人在线观看| 中文在线免费一区三区高中清不卡| 国产精品性做久久久久久| 久久久久久久久久美女| 国产精品性做久久久久久| 久久久久久久久久美女| 国产精品91一区二区| 国产欧美精品一区| 成人黄页毛片网站| 中文字幕一区二区三区在线观看| 99re热这里只有精品免费视频| 中文字幕一区二区三区在线观看| 97se亚洲国产综合在线| 亚洲免费av高清| 在线观看亚洲精品| 天堂久久久久va久久久久| 欧美日韩国产高清一区二区| 日日噜噜夜夜狠狠视频欧美人| 91麻豆精品国产91久久久更新时间| 午夜激情一区二区三区| 91精品啪在线观看国产60岁| 国产中文字幕一区| 欧美激情一区三区| 91蜜桃在线免费视频| 亚洲免费在线看| 欧美日韩激情在线| 精品一区二区影视| 国产蜜臀97一区二区三区| bt欧美亚洲午夜电影天堂| 亚洲免费色视频| 欧美猛男男办公室激情| 国模大尺度一区二区三区| 欧美国产综合一区二区| 日本高清不卡视频| 蜜桃免费网站一区二区三区| 精品国产乱码久久久久久久| 成人免费av网站| 夜夜嗨av一区二区三区网页| 欧美一级二级三级乱码| 国产成人8x视频一区二区| 亚洲激情网站免费观看| 欧美一区二区黄| 成人在线综合网| 亚洲成a人片综合在线| 精品电影一区二区三区| 色综合久久久久综合体| 九色|91porny| 综合色天天鬼久久鬼色| 日韩欧美专区在线| caoporn国产精品| 蜜臀精品一区二区三区在线观看 | 91在线国产福利| 日韩电影网1区2区| 国产精品伦理在线| 在线播放/欧美激情| 成人av电影免费在线播放| 丝袜美腿亚洲色图| 国产精品日韩成人| 久久夜色精品国产欧美乱极品| 日韩电影在线一区二区三区| 日韩视频免费观看高清在线视频| 婷婷丁香久久五月婷婷| 成人一区在线看| 最新不卡av在线| 91精品福利视频| 亚洲美女屁股眼交3| 国产一区二区三区日韩| 婷婷国产在线综合| 国产91丝袜在线观看| 91国模大尺度私拍在线视频| 欧美大黄免费观看| 在线成人av影院| 久久亚区不卡日本| 中文字幕在线一区免费| 欧美激情一区二区在线| 五月天激情综合| 久久国产生活片100| 精品亚洲porn| 久久亚洲一区二区三区明星换脸| 国产精品美女一区二区| 亚洲欧美国产毛片在线| 乱一区二区av| 伦理电影国产精品| www.av亚洲| 国产欧美日韩在线视频| 午夜精品一区在线观看| 日韩福利电影在线| 风间由美一区二区三区在线观看| 极品尤物av久久免费看| www.亚洲免费av| 一区二区三区四区国产精品| 欧美日韩国产综合视频在线观看| 黄色日韩网站视频| 在线亚洲高清视频| 91麻豆免费视频| 春色校园综合激情亚洲| 国产一区二区免费视频| 美女视频黄a大片欧美| 亚洲第一综合色| 一区二区欧美视频| 亚洲综合免费观看高清完整版在线| 国产精品国产三级国产普通话蜜臀 | 欧美三级三级三级| 色婷婷av一区二区三区软件 | 亚洲精品成人在线| 亚洲色图第一区| 亚洲区小说区图片区qvod| 国产精品免费视频一区| 中文字幕免费不卡| wwwwww.欧美系列| 欧美精品一区二区三区久久久| 日韩一区二区三区在线观看| 日韩片之四级片| 精品成人一区二区| 久久综合九色综合97婷婷女人| 精品国产91乱码一区二区三区 | 懂色av一区二区在线播放| 国产精品一区二区黑丝| 国产精品一区免费视频| 国产精品 欧美精品| 国产福利一区在线| 成人免费观看男女羞羞视频| 99久久精品99国产精品| 日本高清不卡一区| 欧美美女网站色| 精品视频在线看| 3atv一区二区三区| 日韩欧美国产电影| 久久精品亚洲麻豆av一区二区|