📄 rowid.cpp
字号:
#include "stdafx.h"
#define __OCICPP_INTERNAL_USE_
#include "RowID.h"
/*!
\class OCICPP::RowID
\brief Encapsulation of an Oracle row id representation OraRowID
*/
OCICPP::RowID::RowID() {
init(0);
}
OCICPP::RowID::RowID(OCICPP::OraRowID *rid) {
init(rid);
}
void OCICPP::RowID::init(OCICPP::OraRowID *rid) {
rowid=rid;
}
OCICPP::RowID::~RowID() {
}
void OCICPP::RowID::drop() {
}
OCICPP::OraRowID *OCICPP::RowID::getRowID() { /* Low-level func should not be used by user applications */
return rowid;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -