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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? msado15.tli

?? 數據庫程序,是一個DVD出租系統的源碼! 能記錄刪除出租記錄和錄像帶的信息
?? 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::GetEOF ( ) {
    VARIANT_BOOL _result;
    HRESULT _hr = get_EOF(&_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);

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久se精品一区精品二区| 91亚洲永久精品| 成人一区二区三区在线观看| 在线视频欧美区| 国产亚洲精品中文字幕| 亚洲国产精品久久艾草纯爱| 国产成人精品www牛牛影视| 欧美色综合影院| 中文字幕一区三区| 国产一区二区中文字幕| 欧美色成人综合| 亚洲免费观看高清完整版在线观看熊| 九一久久久久久| 欧美日韩国产色站一区二区三区| 亚洲人成小说网站色在线| 国产成a人亚洲精品| 精品国产乱码久久久久久浪潮| 亚洲国产成人av网| 欧美亚洲精品一区| 亚洲精品日韩专区silk| 成人av电影在线| 久久精品夜夜夜夜久久| 久久精品国产**网站演员| 欧美日韩免费高清一区色橹橹| 亚洲婷婷综合久久一本伊一区| 成人高清免费观看| 国产精品久久久久9999吃药| 成人av免费在线观看| 国产欧美日韩另类视频免费观看| 国产一区二区三区免费看 | 精品少妇一区二区| 图片区小说区国产精品视频| 欧美日韩国产另类不卡| 亚洲v日本v欧美v久久精品| 在线观看中文字幕不卡| 亚洲成人免费在线观看| 在线播放中文一区| 日本成人中文字幕| 精品国产91亚洲一区二区三区婷婷| 日韩精品电影在线| 日韩久久久久久| 国产精品一色哟哟哟| 国产女人水真多18毛片18精品视频| 丁香一区二区三区| 国产精品国产三级国产aⅴ无密码| 成人免费黄色大片| 亚洲精品中文字幕在线观看| 在线中文字幕一区二区| 丝袜亚洲另类欧美| 精品99999| 成人夜色视频网站在线观看| 亚洲男同性视频| 欧美精品精品一区| 国产高清一区日本| 亚洲人成电影网站色mp4| 欧美日本精品一区二区三区| 蜜臀av一区二区在线免费观看 | 中文字幕在线不卡一区二区三区| 91蜜桃网址入口| 日产欧产美韩系列久久99| 国产亚洲一区字幕| 色av一区二区| 久久精品国产亚洲aⅴ | 国产欧美视频一区二区三区| 91视频免费观看| 日本成人在线一区| 国产精品久久久久婷婷二区次| 91久久国产最好的精华液| 日韩高清在线电影| 欧美激情在线一区二区| 欧美日韩在线亚洲一区蜜芽| 国产在线一区观看| 一区二区三区精品在线| 欧美xfplay| 色狠狠色狠狠综合| 国产一区二区免费看| 亚洲一区二区三区自拍| 久久综合av免费| 欧美日韩久久不卡| 成人av网在线| 精品亚洲国产成人av制服丝袜| 亚洲欧美色图小说| 久久精品亚洲乱码伦伦中文 | 91日韩在线专区| 精品一区二区综合| 亚洲综合精品自拍| 国产精品久久久一本精品 | 国产一区二区伦理片| 亚洲一二三四在线| 国产精品国产自产拍高清av| 欧美电视剧免费全集观看| 欧美三日本三级三级在线播放| 国产在线播放一区| 日韩av成人高清| 亚洲国产精品欧美一二99| 亚洲欧美日韩国产综合在线| 国产精品日韩成人| 久久精品一二三| 久久嫩草精品久久久精品一| 日韩欧美中文一区二区| 欧美色综合网站| 欧美午夜精品久久久久久超碰 | 久久亚洲一区二区三区明星换脸 | 欧美一区二区在线不卡| 色94色欧美sute亚洲线路一ni| 国产电影一区在线| 国产一区二区在线看| 麻豆精品精品国产自在97香蕉| 天堂在线一区二区| 轻轻草成人在线| 人人狠狠综合久久亚洲| 日韩av电影天堂| 美女在线视频一区| 麻豆一区二区三区| 美女www一区二区| 毛片不卡一区二区| 国产在线国偷精品产拍免费yy| 狠狠色丁香久久婷婷综| 国产高清久久久| 成人国产免费视频| 色综合久久久久网| 欧美日韩一区二区三区免费看| 欧美精品v国产精品v日韩精品 | 亚洲精品自拍动漫在线| 亚洲午夜久久久久久久久电影院| 亚洲最新视频在线观看| 日韩精品1区2区3区| 激情综合色综合久久综合| 黑人巨大精品欧美黑白配亚洲| 国产经典欧美精品| 91小视频在线| 欧美三级乱人伦电影| 日韩亚洲欧美在线| 国产日韩欧美制服另类| 亚洲免费资源在线播放| 午夜精品福利一区二区蜜股av| 免费人成在线不卡| 国产精品亚洲第一| 日本二三区不卡| 91精品国产综合久久婷婷香蕉| 精品国产免费人成在线观看| 中文字幕精品一区二区精品绿巨人 | www..com久久爱| 欧美日韩精品一区二区天天拍小说| 日韩女优av电影在线观看| 国产精品短视频| 亚洲妇熟xx妇色黄| 国产精品一区免费视频| 91国产丝袜在线播放| 欧美成人福利视频| 亚洲免费观看在线视频| 天天色天天操综合| 激情伊人五月天久久综合| 99久久夜色精品国产网站| 91精品国产手机| 亚洲视频电影在线| 韩国成人在线视频| 欧美午夜精品一区二区三区| 欧美激情在线一区二区| 日韩电影免费在线看| 91视频免费播放| 精品国产91九色蝌蚪| 亚洲电影一区二区| 成人免费毛片嘿嘿连载视频| 在线不卡一区二区| 亚洲激情六月丁香| 国产乱码精品1区2区3区| 欧美日本在线看| 中文字幕在线不卡一区二区三区| 另类小说视频一区二区| 欧美无乱码久久久免费午夜一区| 国产亚洲制服色| 六月婷婷色综合| 欧美在线观看一二区| 国产精品美女www爽爽爽| 久久成人久久鬼色| 欧美视频中文字幕| 亚洲欧美国产毛片在线| 不卡一二三区首页| 亚洲国产精品传媒在线观看| 久久超碰97中文字幕| 欧美放荡的少妇| 五月综合激情日本mⅴ| 色综合天天综合给合国产| 欧美激情一区二区三区在线| 看电视剧不卡顿的网站| 欧美日韩国产a| 亚洲综合男人的天堂| 色综合久久综合| 亚洲丝袜精品丝袜在线| jlzzjlzz欧美大全| 日本一区二区成人在线| 成人网页在线观看| 久久久久久**毛片大全| 久久www免费人成看片高清| 欧美电视剧免费观看| 久久99国产精品麻豆| 精品国产乱码久久久久久免费| 久久9热精品视频| 精品国产精品网麻豆系列|