📄 ocitype.h
字号:
#ifndef _COCIType
#define _COCIType
#ifndef OCI_ORACLE
#include "oci.h"
#endif
class COCISession;
class COCIType
{
public:
COCIType(const COCISession& Sess, char* type_name);
COCIType(const COCISession& Sess, OCIType* _tdo);
COCIType(const COCIType& src);
COCIType();
~COCIType();
char* get_name(void);
const OCIType* get_tdo() const {return tdo;}
dvoid* get_list_attr(){return attr_list();}
ub2 get_attr_count(){return m_attr_count;}
void* attr_list();
// Strange interface this one - MFC STL requires it
COCIType& operator = (const COCIType& src);
private:
ub2 attr_count();
public:
//private:
const COCISession& m_Session;
OCIType* tdo;
ub2 m_attr_count;
dvoid* m_list_attr;
OCIDescribe* m_deshp;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -