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

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

?? msado15.tli

?? 本系統(tǒng)屬于小型的局域網(wǎng)監(jiān)控系統(tǒng)
?? TLI
?? 第 1 頁 / 共 5 頁
字號:

inline HRESULT Connection15::RollbackTrans ( ) {
    HRESULT _hr = raw_RollbackTrans();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Connection15::Open ( _bstr_t ConnectionString, _bstr_t UserID, _bstr_t Password, long Options ) {
    HRESULT _hr = raw_Open(ConnectionString, UserID, Password, Options);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline ErrorsPtr Connection15::GetErrors ( ) {
    struct Errors * _result;
    HRESULT _hr = get_Errors(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return ErrorsPtr(_result, false);
}

inline _bstr_t Connection15::GetDefaultDatabase ( ) {
    BSTR _result;
    HRESULT _hr = get_DefaultDatabase(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline void Connection15::PutDefaultDatabase ( _bstr_t pbstr ) {
    HRESULT _hr = put_DefaultDatabase(pbstr);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline enum IsolationLevelEnum Connection15::GetIsolationLevel ( ) {
    enum IsolationLevelEnum _result;
    HRESULT _hr = get_IsolationLevel(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Connection15::PutIsolationLevel ( enum IsolationLevelEnum Level ) {
    HRESULT _hr = put_IsolationLevel(Level);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline long Connection15::GetAttributes ( ) {
    long _result;
    HRESULT _hr = get_Attributes(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Connection15::PutAttributes ( long plAttr ) {
    HRESULT _hr = put_Attributes(plAttr);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline enum CursorLocationEnum Connection15::GetCursorLocation ( ) {
    enum CursorLocationEnum _result;
    HRESULT _hr = get_CursorLocation(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Connection15::PutCursorLocation ( enum CursorLocationEnum plCursorLoc ) {
    HRESULT _hr = put_CursorLocation(plCursorLoc);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline enum ConnectModeEnum Connection15::GetMode ( ) {
    enum ConnectModeEnum _result;
    HRESULT _hr = get_Mode(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Connection15::PutMode ( enum ConnectModeEnum plMode ) {
    HRESULT _hr = put_Mode(plMode);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _bstr_t Connection15::GetProvider ( ) {
    BSTR _result;
    HRESULT _hr = get_Provider(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _bstr_t(_result, false);
}

inline void Connection15::PutProvider ( _bstr_t pbstr ) {
    HRESULT _hr = put_Provider(pbstr);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline long Connection15::GetState ( ) {
    long _result;
    HRESULT _hr = get_State(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline _RecordsetPtr Connection15::OpenSchema ( enum SchemaEnum Schema, const _variant_t & Restrictions, const _variant_t & SchemaID ) {
    struct _Recordset * _result;
    HRESULT _hr = raw_OpenSchema(Schema, Restrictions, SchemaID, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _RecordsetPtr(_result, false);
}

//
// interface _Connection wrapper method implementations
//

inline HRESULT _Connection::Cancel ( ) {
    HRESULT _hr = raw_Cancel();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

//
// interface Recordset15 wrapper method implementations
//

inline PositionEnum_Param Recordset15::GetAbsolutePosition ( ) {
    PositionEnum_Param _result;
    HRESULT _hr = get_AbsolutePosition(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Recordset15::PutAbsolutePosition ( PositionEnum_Param pl ) {
    HRESULT _hr = put_AbsolutePosition(pl);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline void Recordset15::PutRefActiveConnection ( IDispatch * pvar ) {
    HRESULT _hr = putref_ActiveConnection(pvar);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline void Recordset15::PutActiveConnection ( const _variant_t & pvar ) {
    HRESULT _hr = put_ActiveConnection(pvar);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _variant_t Recordset15::GetActiveConnection ( ) {
    VARIANT _result;
    VariantInit(&_result);
    HRESULT _hr = get_ActiveConnection(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _variant_t(_result, false);
}

inline VARIANT_BOOL Recordset15::GetBOF ( ) {
    VARIANT_BOOL _result;
    HRESULT _hr = get_BOF(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline _variant_t Recordset15::GetBookmark ( ) {
    VARIANT _result;
    VariantInit(&_result);
    HRESULT _hr = get_Bookmark(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _variant_t(_result, false);
}

inline void Recordset15::PutBookmark ( const _variant_t & pvBookmark ) {
    HRESULT _hr = put_Bookmark(pvBookmark);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline long Recordset15::GetCacheSize ( ) {
    long _result;
    HRESULT _hr = get_CacheSize(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Recordset15::PutCacheSize ( long pl ) {
    HRESULT _hr = put_CacheSize(pl);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline enum CursorTypeEnum Recordset15::GetCursorType ( ) {
    enum CursorTypeEnum _result;
    HRESULT _hr = get_CursorType(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Recordset15::PutCursorType ( enum CursorTypeEnum plCursorType ) {
    HRESULT _hr = put_CursorType(plCursorType);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline VARIANT_BOOL Recordset15::GetADOEof ( ) {
    VARIANT_BOOL _result;
    HRESULT _hr = get_ADOEof(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline FieldsPtr Recordset15::GetFields ( ) {
    struct Fields * _result;
    HRESULT _hr = get_Fields(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return FieldsPtr(_result, false);
}

inline enum LockTypeEnum Recordset15::GetLockType ( ) {
    enum LockTypeEnum _result;
    HRESULT _hr = get_LockType(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Recordset15::PutLockType ( enum LockTypeEnum plLockType ) {
    HRESULT _hr = put_LockType(plLockType);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline ADO_LONGPTR Recordset15::GetMaxRecords ( ) {
    ADO_LONGPTR _result;
    HRESULT _hr = get_MaxRecords(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Recordset15::PutMaxRecords ( ADO_LONGPTR plMaxRecords ) {
    HRESULT _hr = put_MaxRecords(plMaxRecords);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline ADO_LONGPTR Recordset15::GetRecordCount ( ) {
    ADO_LONGPTR _result;
    HRESULT _hr = get_RecordCount(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Recordset15::PutRefSource ( IDispatch * pvSource ) {
    HRESULT _hr = putref_Source(pvSource);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline void Recordset15::PutSource ( _bstr_t pvSource ) {
    HRESULT _hr = put_Source(pvSource);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline _variant_t Recordset15::GetSource ( ) {
    VARIANT _result;
    VariantInit(&_result);
    HRESULT _hr = get_Source(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _variant_t(_result, false);
}

inline HRESULT Recordset15::AddNew ( const _variant_t & FieldList, const _variant_t & Values ) {
    HRESULT _hr = raw_AddNew(FieldList, Values);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::CancelUpdate ( ) {
    HRESULT _hr = raw_CancelUpdate();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::Close ( ) {
    HRESULT _hr = raw_Close();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::Delete ( enum AffectEnum AffectRecords ) {
    HRESULT _hr = raw_Delete(AffectRecords);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline _variant_t Recordset15::GetRows ( long Rows, const _variant_t & Start, const _variant_t & Fields ) {
    VARIANT _result;
    VariantInit(&_result);
    HRESULT _hr = raw_GetRows(Rows, Start, Fields, &_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _variant_t(_result, false);
}

inline HRESULT Recordset15::Move ( ADO_LONGPTR NumRecords, const _variant_t & Start ) {
    HRESULT _hr = raw_Move(NumRecords, Start);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::MoveNext ( ) {
    HRESULT _hr = raw_MoveNext();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::MovePrevious ( ) {
    HRESULT _hr = raw_MovePrevious();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::MoveFirst ( ) {
    HRESULT _hr = raw_MoveFirst();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::MoveLast ( ) {
    HRESULT _hr = raw_MoveLast();
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::Open ( const _variant_t & Source, const _variant_t & ActiveConnection, enum CursorTypeEnum CursorType, enum LockTypeEnum LockType, long Options ) {
    HRESULT _hr = raw_Open(Source, ActiveConnection, CursorType, LockType, Options);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::Requery ( long Options ) {
    HRESULT _hr = raw_Requery(Options);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::_xResync ( enum AffectEnum AffectRecords ) {
    HRESULT _hr = raw__xResync(AffectRecords);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline HRESULT Recordset15::Update ( const _variant_t & Fields, const _variant_t & Values ) {
    HRESULT _hr = raw_Update(Fields, Values);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _hr;
}

inline PositionEnum_Param Recordset15::GetAbsolutePage ( ) {
    PositionEnum_Param _result;
    HRESULT _hr = get_AbsolutePage(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Recordset15::PutAbsolutePage ( PositionEnum_Param pl ) {
    HRESULT _hr = put_AbsolutePage(pl);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
}

inline enum EditModeEnum Recordset15::GetEditMode ( ) {
    enum EditModeEnum _result;
    HRESULT _hr = get_EditMode(&_result);

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
91黄视频在线观看| 国产精品久久夜| 日韩中文欧美在线| 欧美少妇xxx| 亚洲国产日韩a在线播放性色| 精品一区二区三区香蕉蜜桃 | 欧美日韩国产中文| 亚洲三级电影全部在线观看高清| 国产a视频精品免费观看| 国产三区在线成人av| 国内精品久久久久影院一蜜桃| 日韩欧美国产综合| 国产一区二区三区av电影 | 国产乱码精品一区二区三| 精品少妇一区二区三区| 精东粉嫩av免费一区二区三区| 欧美大片在线观看一区| 午夜伊人狠狠久久| 欧美丰满少妇xxxxx高潮对白| 午夜激情一区二区三区| 91精品国产欧美一区二区18| 亚洲欧美电影院| 欧美性色欧美a在线播放| 午夜视黄欧洲亚洲| 日韩欧美的一区| 丰满放荡岳乱妇91ww| 久久久精品天堂| 不卡一区二区中文字幕| 亚洲乱码中文字幕| 欧美高清hd18日本| 蜜臀久久久99精品久久久久久| 欧美成人aa大片| 国产98色在线|日韩| 亚洲激情在线激情| 欧美一区二区日韩| 美女在线一区二区| 亚洲国产成人自拍| 精品视频在线免费看| 日本在线播放一区二区三区| 日韩欧美国产精品一区| av中文字幕在线不卡| 一区二区免费视频| 精品国产一区二区三区久久影院| 懂色av中文字幕一区二区三区 | 久久嫩草精品久久久久| 成人aaaa免费全部观看| 日日夜夜免费精品| 日本一区二区三区电影| 欧美精品v国产精品v日韩精品 | 日本韩国一区二区三区| 免费视频一区二区| 亚洲天堂成人在线观看| 欧美一区二区三区在线看| 国产凹凸在线观看一区二区| 性感美女久久精品| 国产亚洲午夜高清国产拍精品| 91麻豆视频网站| 国产做a爰片久久毛片| 亚洲一区免费观看| 精品国产1区2区3区| 日本精品视频一区二区三区| 久久国产精品一区二区| 亚洲女人****多毛耸耸8| 欧美电视剧免费观看| 欧美综合一区二区三区| 国产福利一区二区三区视频| 亚洲午夜久久久久久久久电影网| 精品成人在线观看| 制服.丝袜.亚洲.中文.综合| 国产一区二区三区在线观看免费视频 | 一级特黄大欧美久久久| 国产婷婷色一区二区三区四区| 波多野结衣欧美| 国产老肥熟一区二区三区| 三级影片在线观看欧美日韩一区二区| 日本一区二区三级电影在线观看 | 国产乱对白刺激视频不卡| 午夜精品久久久久久久99樱桃| 亚洲人一二三区| 中文字幕一区二区三区四区| 国产精品毛片无遮挡高清| 国产精品久久久久久久久搜平片 | 一区二区视频免费在线观看| 亚洲免费色视频| 亚洲资源中文字幕| 婷婷久久综合九色综合伊人色| 视频一区视频二区中文字幕| 免费看日韩精品| 国内成人免费视频| 国产91对白在线观看九色| 99久久精品免费看国产 | 日韩精品久久久久久| 婷婷成人综合网| 久久se这里有精品| 国产**成人网毛片九色| 在线欧美日韩精品| 在线电影院国产精品| 欧美tk—视频vk| 国产精品无圣光一区二区| 亚洲激情图片小说视频| 蜜桃av一区二区在线观看| 国产精品一二三四五| 色婷婷久久久亚洲一区二区三区| 欧美日本一区二区在线观看| 国产精品国产a级| 亚洲最大色网站| 男女性色大片免费观看一区二区| 国产一区欧美一区| 日本道精品一区二区三区| 91精品国产色综合久久不卡电影 | 欧美性猛交xxxx黑人交| 日韩欧美激情四射| 亚洲欧美自拍偷拍色图| 日本欧美大码aⅴ在线播放| 国产成人免费xxxxxxxx| 欧美日精品一区视频| 精品动漫一区二区三区在线观看 | 亚洲一区在线观看网站| 免费成人美女在线观看.| 99视频在线观看一区三区| 欧美精品久久久久久久久老牛影院| 精品国产免费人成电影在线观看四季| 亚洲日本成人在线观看| 奇米影视7777精品一区二区| 91在线观看高清| 精品国产一区二区三区四区四| 亚洲精品免费在线| 国产成人自拍网| 777a∨成人精品桃花网| 国产精品久久久久久久岛一牛影视| 亚洲v中文字幕| 99久久er热在这里只有精品66| 日韩免费看的电影| 五月天久久比比资源色| 不卡在线观看av| 精品1区2区在线观看| 亚洲综合色成人| av不卡一区二区三区| 久久精品一区蜜桃臀影院| 秋霞午夜av一区二区三区| 91视频国产观看| 国产精品免费视频一区| 国产一区美女在线| 欧美一区二区三区小说| 伊人色综合久久天天| 国产成人无遮挡在线视频| 91.com视频| 亚洲va天堂va国产va久| 欧美系列在线观看| 亚洲欧美日韩久久| 欧美一区二区网站| 精品国产伦一区二区三区观看方式 | 国产精品成人网| 欧美tk丨vk视频| 欧美男女性生活在线直播观看| 国产麻豆视频一区| 欧美一区二区视频免费观看| 丝瓜av网站精品一区二区| 欧美日韩国产系列| 亚洲少妇最新在线视频| 风间由美一区二区av101 | 久久精品一区四区| 国产suv精品一区二区三区| 亚洲猫色日本管| 日韩欧美一二区| 国产又黄又大久久| 青青草国产成人99久久| 国产精品国产三级国产普通话99 | 国产电影一区二区三区| 亚洲国产精品成人久久综合一区| 色婷婷久久一区二区三区麻豆| 亚洲成人你懂的| 亚洲国产电影在线观看| 99久免费精品视频在线观看| 日韩福利视频导航| 一区二区三区日韩在线观看| 国产亚洲污的网站| 国产精品久久久久久久久搜平片| 2023国产精品| 日本电影亚洲天堂一区| 久久精品国产99久久6| 国产精品美女一区二区| 欧美日韩一区二区电影| 国产精品资源网站| 国产综合色产在线精品| 一区二区三区在线免费| 国产精品精品国产色婷婷| 欧美一区二区播放| caoporen国产精品视频| 久久99这里只有精品| 婷婷开心久久网| 日韩综合小视频| 日本成人在线看| 极品美女销魂一区二区三区 | 91色综合久久久久婷婷| 轻轻草成人在线| 亚洲欧美日韩在线| 国产精品卡一卡二卡三| 久久电影国产免费久久电影| 国产激情精品久久久第一区二区|