⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 describe.h

📁 在动态库中实现异步导出大数据量的oracle数据
💻 H
字号:
#ifndef __DESCRIBE_H_
#define __DESCRIBE_H_

#include "../ocicpp.h"

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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -