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

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

?? msado15.tli

?? 對學(xué)生信息的考試數(shù)據(jù)管理的數(shù)據(jù)庫
?? TLI
?? 第 1 頁 / 共 5 頁
字號:
// Created by Microsoft (R) C/C++ Compiler Version 12.00.8168.0 (ebdb1ce0).
//
// e:\vc++\vc++數(shù)據(jù)庫開發(fā)基礎(chǔ)及實例解析配套光盤\sample14\debug\msado15.tli
//
// Wrapper implementations for Win32 type library c:\program files\common files\system\ado\msado15.dll
// compiler-generated file created 12/30/08 at 23:12:38 - 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一区二区三区免费野_久草精品视频
亚洲裸体在线观看| 日韩精品一区第一页| 亚洲黄色av一区| 国产在线观看免费一区| 欧洲视频一区二区| 国产精品伦一区| 久久99国产精品尤物| 91久久国产最好的精华液| 精品国产乱码久久久久久闺蜜| 亚洲欧洲日产国产综合网| 九九久久精品视频| 91精品久久久久久久99蜜桃| 成人欧美一区二区三区小说| 国产真实精品久久二三区| 欧美电影在线免费观看| 亚洲欧洲制服丝袜| 成人国产精品视频| 久久视频一区二区| 免费精品视频在线| 在线成人av网站| 亚洲成人激情自拍| 欧美亚洲动漫制服丝袜| 国产精品美日韩| 成人av免费在线播放| 中文字幕人成不卡一区| 国产精品白丝av| 26uuu国产日韩综合| 久久99国产精品免费网站| 欧美一级高清大全免费观看| 亚洲va欧美va人人爽| 欧美人与z0zoxxxx视频| 午夜视频久久久久久| 色噜噜狠狠色综合欧洲selulu| 国产精品高潮呻吟| 99久久国产综合精品麻豆| 国产日产欧美精品一区二区三区| 久草这里只有精品视频| 亚洲精品一区二区三区福利 | 日本美女一区二区| 欧美性感一区二区三区| 最新中文字幕一区二区三区| 不卡的看片网站| 国产日韩欧美麻豆| 成人视屏免费看| 日本一区二区三区在线不卡| 免费欧美在线视频| 精品国产一区久久| 国产二区国产一区在线观看| 欧美韩日一区二区三区| 国产不卡高清在线观看视频| 亚洲国产高清在线观看视频| www.综合网.com| 亚洲图片欧美一区| 欧美一区二区三区播放老司机| 日本aⅴ亚洲精品中文乱码| 欧美自拍偷拍一区| 免费欧美高清视频| 欧美激情一区二区三区| 91麻豆精品一区二区三区| 亚洲国产视频一区| 欧美成人vps| 99麻豆久久久国产精品免费| 天天综合网 天天综合色| 国产精品久久久久影视| 欧美在线视频全部完| 日本在线不卡视频一二三区| 久久久99精品久久| 色综合久久中文字幕| 免费观看一级欧美片| 国产精品美女久久久久aⅴ国产馆 国产精品美女久久久久av爽李琼 国产精品美女久久久久高潮 | 欧美综合一区二区| 美女视频一区二区三区| 国产精品美女视频| 日韩欧美国产不卡| 一本大道久久a久久综合婷婷| 日韩精品欧美精品| 亚洲私人黄色宅男| wwwwww.欧美系列| 欧美日韩一级视频| 99视频精品在线| 国产美女娇喘av呻吟久久| 亚洲午夜精品在线| 国产精品九色蝌蚪自拍| 欧美α欧美αv大片| 91福利国产成人精品照片| 国产一区二区三区久久久 | 天天色天天操综合| 亚洲人成精品久久久久久| 91精品国产综合久久久久| 99在线热播精品免费| 六月丁香婷婷色狠狠久久| 一区二区三区四区视频精品免费| 久久久午夜精品| 欧美成人艳星乳罩| 欧美性色综合网| 91亚洲资源网| 成人黄色一级视频| 国产一区在线精品| 免费一区二区视频| 亚洲午夜久久久久| 夜夜嗨av一区二区三区中文字幕| 国产精品久久久久一区二区三区共| 欧美tk—视频vk| 777午夜精品免费视频| 在线观看日韩一区| 日本韩国欧美在线| 91年精品国产| 一本一道久久a久久精品综合蜜臀| 岛国av在线一区| 国产成人亚洲综合a∨猫咪| 国产在线精品一区二区| 久久99在线观看| 久久国产精品免费| 九九国产精品视频| 国产一区二区三区香蕉| 国产老肥熟一区二区三区| 精品一区二区三区久久久| 精品一区二区三区在线观看国产| 美女脱光内衣内裤视频久久网站| 蜜臀精品久久久久久蜜臀| 久久成人精品无人区| 激情综合色播激情啊| 国产成人综合亚洲网站| 国产成人免费xxxxxxxx| av亚洲精华国产精华| 99re8在线精品视频免费播放| 色拍拍在线精品视频8848| 在线观看视频一区二区| 欧美精品一卡二卡| 精品国产一区二区在线观看| 国产午夜久久久久| 亚洲精选一二三| 天堂av在线一区| 精品综合久久久久久8888| 国产一区激情在线| 99视频一区二区三区| 欧美日韩综合在线| 欧美电影精品一区二区| 国产日韩欧美精品在线| 一区二区三区国产| 日韩不卡手机在线v区| 国产一区中文字幕| 日本二三区不卡| 精品久久国产老人久久综合| 欧美韩国日本不卡| 亚洲一区二区精品视频| 精品亚洲成a人在线观看| 国产成人自拍在线| 欧洲一区在线电影| 久久伊人蜜桃av一区二区| 18成人在线观看| 免费成人美女在线观看.| 国产精品小仙女| 色94色欧美sute亚洲线路一久| 欧美一级欧美一级在线播放| 欧美精品一区二区三| 一区在线观看视频| 久久99国产精品免费网站| 成人黄色在线视频| 欧美成人aa大片| 一区二区三区av电影 | 99精品视频在线观看| 欧美一级生活片| 亚洲精品免费在线播放| 国模冰冰炮一区二区| 欧美体内she精高潮| 国产人伦精品一区二区| 日韩专区在线视频| 91黄色免费看| 中文字幕电影一区| 精品一区二区三区香蕉蜜桃| 99精品1区2区| 久久精品亚洲精品国产欧美kt∨| 亚洲二区在线视频| 91香蕉视频mp4| 国产亚洲一二三区| 美女视频网站久久| 欧美无乱码久久久免费午夜一区| 中文文精品字幕一区二区| 美女视频黄频大全不卡视频在线播放 | 日本 国产 欧美色综合| 色久综合一二码| 亚洲欧洲一区二区在线播放| 国产激情精品久久久第一区二区 | 在线观看一区日韩| 国产精品污污网站在线观看| 精品一区二区三区的国产在线播放| 欧美日产在线观看| 亚洲3atv精品一区二区三区| 色婷婷av一区二区三区之一色屋| 国产精品乱子久久久久| 懂色av一区二区夜夜嗨| 久久久久久毛片| 国产毛片一区二区| 久久久久久久免费视频了| 国产在线视视频有精品| 久久蜜桃香蕉精品一区二区三区| 久久精品久久99精品久久| 欧美一区二区三区爱爱| 久久精品国产99国产|