describe.h
来自「在动态库中实现异步导出大数据量的oracle数据」· C头文件 代码 · 共 31 行
H
31 行
#ifndef __DESCRIBE_H_
#define __DESCRIBE_H_
#include "ocicpp.h"
using std::string;
class Describe {
private:
OCISvcCtx *svcctx;
OCIError *error;
OCIDescribe *descr;
private:
string object_name;
string object_type_name;
ub1 object_type;
ub2 num_attrs;
ub2 num_params;
ub1 *timestamp;
public:
explicit Describe(OCISvcCtx *svchp,OCIError *errhp,string object_name);
virtual ~Describe();
string getObjectName();
int getObjectType();
string getObjectTypeName();
int getNumAttrs();
int getNumParams();
unsigned char *getTimeStamp();
private:
void TypeNameFromType();
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?