00001 #ifndef __ORAROWID_H_
00002 #define __ORAROWID_H_
00003
00004 #include "ocicpp.h"
00005 #include "OraType.h"
00006 #include "OraError.h"
00007
00008
00009 namespace OCICPP {
00010
00011 using std::string;
00012 class OraRowID: public OraType {
00013 public:
00014 OCIRowid **rowid;
00015 public:
00016 OraRowID(OCIEnv *env,OCIError *,OCIParam *,ub2 type,int rows);
00017 ~OraRowID();
00018 virtual void define(OCIStmt *stmt,int col);
00019 virtual void getStr(string &str,int row);
00020
00021 };
00022
00023 }
00024
00025 #endif
00026