00001 #ifndef __ORALABEL_H_
00002 #define __ORALABEL_H_
00003
00004 #include "ocicpp.h"
00005 #include "OraType.h"
00006 #include "OraError.h"
00007
00008 namespace OCICPP {
00009 using std::string;
00010
00011 class OraLabel : public OraType {
00012 private:
00013 char *data;
00014 public:
00015 OraLabel(OCIEnv *,OCIError *,OCIParam *,ub2,int rows);
00016 virtual ~OraLabel();
00017 virtual void getStr(string &,int rows);
00018 virtual void define(OCIStmt *,int);
00019 };
00020
00021 }
00022
00023 #endif
00024