hytype.h

来自「《Oracle Spatial与OCI高级编程》相关配套源码。介绍了Oracle」· C头文件 代码 · 共 29 行

H
29
字号
#ifndef HYTYPE_ORACLE
# define HYTYPE_ORACLE

#ifndef OCI_ORACLE
# include <oci.h>
#endif

typedef OCIRef hytype_ref;
typedef OCIArray hyarrayt;

struct hytype
{
   OCIString * hystr;
   OCINumber hynum;
   hyarrayt * hyarray;
};
typedef struct hytype hytype;

struct hytype_ind
{
   OCIInd _atomic;
   OCIInd hystr;
   OCIInd hynum;
   OCIInd hyarray;
};
typedef struct hytype_ind hytype_ind;

#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?