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

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

?? msado15.tli

?? vc ADO 連接數(shù)據(jù)庫(kù)
?? TLI
?? 第 1 頁(yè) / 共 5 頁(yè)
字號(hào):
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 enum PositionEnum Recordset15::GetAbsolutePosition ( ) {
    enum PositionEnum _result;
    HRESULT _hr = get_AbsolutePosition(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Recordset15::PutAbsolutePosition ( enum PositionEnum 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 long Recordset15::GetMaxRecords ( ) {
    long _result;
    HRESULT _hr = get_MaxRecords(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

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

inline long Recordset15::GetRecordCount ( ) {
    long _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 ( long 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 enum PositionEnum Recordset15::GetAbsolutePage ( ) {
    enum PositionEnum _result;
    HRESULT _hr = get_AbsolutePage(&_result);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;
}

inline void Recordset15::PutAbsolutePage ( enum PositionEnum 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);
    if (FAILED(_hr)) _com_issue_errorex(_hr, this, __uuidof(this));
    return _result;

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久精品一区八戒影视| 一本大道久久精品懂色aⅴ| 国产精品国产三级国产aⅴ中文| 欧美一区二区三区婷婷月色| 欧美在线免费播放| 欧美性感一区二区三区| 91精品91久久久中77777| 99视频精品在线| 午夜精彩视频在线观看不卡| 怡红院av一区二区三区| 国产亚洲精品久| 久久综合久色欧美综合狠狠| 欧美电影精品一区二区| 精品国产免费久久| 26uuu久久天堂性欧美| 精品久久人人做人人爽| 国产亚洲精品资源在线26u| 久久亚洲春色中文字幕久久久| 久久久久久久久久美女| 国产精品欧美经典| 亚洲在线中文字幕| 亚洲高清在线精品| 亚洲福中文字幕伊人影院| 日韩电影在线免费看| 亚洲国产aⅴ成人精品无吗| 日本中文字幕一区| 另类小说一区二区三区| 老司机免费视频一区二区三区| 国产一区二区在线免费观看| av在线播放一区二区三区| 一本色道久久综合狠狠躁的推荐 | 成人免费毛片aaaaa**| 国产成人免费av在线| 处破女av一区二区| 色综合天天性综合| 欧美日韩精品一二三区| 日韩一区二区在线观看视频| 日韩精品一区二区三区视频播放 | 91精品国产一区二区三区香蕉| 日韩欧美一区二区久久婷婷| 国产精品久久久久久久午夜片| 成人免费一区二区三区在线观看| 午夜欧美2019年伦理| 国产91在线|亚洲| 欧美日韩你懂的| 国产精品美女久久久久av爽李琼| 亚洲精品免费在线观看| 国产在线视频不卡二| 欧美日韩一区视频| 久久久久久久久蜜桃| 日韩专区欧美专区| 97se亚洲国产综合自在线 | 久久久国产午夜精品| 亚洲一区二区三区视频在线播放 | 91香蕉视频黄| 日韩美女在线视频| 亚洲一区二区在线观看视频 | 91久久香蕉国产日韩欧美9色| 欧美mv日韩mv| 亚洲国产日韩在线一区模特| av激情成人网| 国产女同性恋一区二区| 免费人成黄页网站在线一区二区| 在线视频你懂得一区| 日本一区二区不卡视频| 精品午夜久久福利影院| gogogo免费视频观看亚洲一| 成人午夜碰碰视频| 日韩一区二区三区高清免费看看| 亚洲综合成人在线视频| av不卡免费在线观看| 精品日本一线二线三线不卡| 日本美女一区二区三区| 欧美久久久久久久久久| 天堂影院一区二区| 欧美美女喷水视频| 一区二区三区在线免费观看| 色成年激情久久综合| 国产精品午夜春色av| 国产成人免费在线视频| 久久亚洲精华国产精华液 | 一本一道久久a久久精品| 亚洲三级电影全部在线观看高清| 色综合久久天天| 亚洲一级二级在线| 欧美亚洲国产一卡| 亚洲1区2区3区4区| 91精品国产乱码| 国产黄色精品网站| 国产欧美精品区一区二区三区 | 久久这里都是精品| 免费成人av在线播放| 精品日韩av一区二区| 丁香婷婷深情五月亚洲| 91精品国产一区二区人妖| 蜜臀av亚洲一区中文字幕| 欧美日韩三级一区| 青椒成人免费视频| 精品国产91洋老外米糕| 色菇凉天天综合网| 久久国产精品72免费观看| 欧美激情一区二区三区四区| 91蜜桃传媒精品久久久一区二区| 婷婷久久综合九色综合伊人色| 日韩免费在线观看| 91丝袜美女网| 日本一不卡视频| 一区免费观看视频| 欧美一区二区三区在线观看视频| 高清成人在线观看| 亚洲成a天堂v人片| 国产精品天美传媒| 欧美一区二区三区日韩视频| 国产成人午夜99999| 亚洲 欧美综合在线网络| 久久免费看少妇高潮| 在线观看国产日韩| 国产中文一区二区三区| 亚洲精选视频在线| 久久精品人人爽人人爽| 91精品国产综合久久精品图片| 狠狠色丁香婷综合久久| 亚洲一级二级三级在线免费观看| 精品日韩一区二区| 欧美日韩精品高清| aaa亚洲精品一二三区| 午夜伊人狠狠久久| 亚洲免费av高清| 中文天堂在线一区| 精品毛片乱码1区2区3区| 色婷婷激情综合| 成人午夜又粗又硬又大| 男女男精品视频网| 亚洲精品美腿丝袜| 中文字幕一区二区三区精华液| 日韩女优制服丝袜电影| 欧美人牲a欧美精品| 色婷婷精品大视频在线蜜桃视频| 国产麻豆日韩欧美久久| 免费看欧美女人艹b| 午夜av一区二区| 亚洲福利视频一区| 亚洲欧美日韩国产一区二区三区 | 91精品国产黑色紧身裤美女| 成人一道本在线| 粉嫩av亚洲一区二区图片| 国产在线播放一区| 韩国av一区二区三区四区| 久久国产综合精品| 久久精品久久综合| 精品亚洲成av人在线观看| 精品一区二区久久| 国产一区二区精品久久| 国产乱码精品1区2区3区| 国产美女精品一区二区三区| 久久av中文字幕片| 国产一区二区三区不卡在线观看| 国产一区二区三区在线看麻豆| 国产一区二区三区av电影| 国产乱对白刺激视频不卡| 国产一区二区日韩精品| 99这里都是精品| 色婷婷综合在线| 欧美性极品少妇| 欧美一区二区在线看| 精品久久一二三区| 欧美激情一区二区三区不卡| 国产精品萝li| 亚洲成在人线免费| 毛片av中文字幕一区二区| 国产在线不卡一卡二卡三卡四卡| 成熟亚洲日本毛茸茸凸凹| 91香蕉视频黄| 欧美一区二区精品| 亚洲va欧美va天堂v国产综合| 日本不卡一二三| 国产精品影视在线| 91在线观看免费视频| 欧美人xxxx| 国产丝袜欧美中文另类| 亚洲一二三区视频在线观看| 日本不卡一区二区三区高清视频| 精品一区二区在线播放| 91在线视频免费观看| 欧美日韩国产精选| www日韩大片| 亚洲一区二区三区四区在线观看 | 国产91露脸合集magnet| 一本久久精品一区二区| 日韩精品一区二区三区三区免费| 国产精品九色蝌蚪自拍| 日韩高清在线电影| 99久久99久久精品免费看蜜桃| 欧美精品在线视频| 国产精品久久免费看| 麻豆久久久久久久| 欧美天堂一区二区三区| 国产精品毛片a∨一区二区三区| 午夜精品久久久久久久| 99久久伊人精品|