ocintab.h
来自「一个通用的oracle OCI开发程序包」· C头文件 代码 · 共 29 行
H
29 行
#ifndef _COCINestedTable
#define _COCINestedTable
#ifndef _COCICollection
#include "ocicoll.h"
#endif
template<class T>
class COCINestedTable : public COCICollection<T>
{
public:
COCINestedTable(const COCISession& Sess, COCIType type);
COCINestedTable(const COCISession& Sess, dvoid* instance, COCIType type);
COCINestedTable(const COCINestedTable<T>& src);
~COCINestedTable();
void remove(sb4 index);
bool exists(sb4 index);
sb4 first();
sb4 last();
bool next(sb4& index); // IN: index = this index, OUT: index = next index
bool prev(sb4& index);
};
#include "ocintab.inl"
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?