ROOT  6.07/01
Reference Guide
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
TOracleRow.h
Go to the documentation of this file.
1 // @(#)root/physics:$Id$
2 // Author: Yan Liu and Shaowen Wang 23/11/04
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2005, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TOracleRow
13 #define ROOT_TOracleRow
14 
15 #ifndef ROOT_TSQLRow
16 #include "TSQLRow.h"
17 #endif
18 
19 #if !defined(__CINT__)
20 #include <occi.h>
21 #ifdef CONST
22 #undef CONST
23 #endif
24 #else
25 namespace oracle { namespace occi {
26 class ResultSet;
27 class MetaData;
28  }}
29 #endif
30 
31 class TOracleRow : public TSQLRow {
32 
33 private:
34  oracle::occi::ResultSet *fResult; // current result set
35  std::vector<oracle::occi::MetaData> *fFieldInfo; // metadata for columns
37  char **fFieldsBuffer;
38 
39  Bool_t IsValid(Int_t field);
40 
41  TOracleRow(const TOracleRow&); // Not implemented.
42  TOracleRow &operator=(const TOracleRow&); // Not implemented.
43 
44 protected:
45  void GetRowData();
46 
47 public:
48  TOracleRow(oracle::occi::ResultSet *rs,
49  std::vector<oracle::occi::MetaData> *fieldMetaData);
50  ~TOracleRow();
51 
52  void Close(Option_t *opt="");
54  const char *GetField(Int_t field);
55 
56  ClassDef(TOracleRow,0) // One row of Oracle query result
57 };
58 
59 #endif
const char Option_t
Definition: RtypesCore.h:62
~TOracleRow()
Destroy row object.
Definition: TOracleRow.cxx:40
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
#define ClassDef(name, id)
Definition: Rtypes.h:254
Int_t fFieldCount
Definition: TOracleRow.h:36
TOracleRow(const TOracleRow &)
void GetRowData()
Definition: TOracleRow.cxx:104
std::vector< oracle::occi::MetaData > * fFieldInfo
Definition: TOracleRow.h:35
oracle::occi::ResultSet * fResult
Definition: TOracleRow.h:34
ULong_t GetFieldLength(Int_t field)
Get length in bytes of specified field.
Definition: TOracleRow.cxx:80
Bool_t IsValid(Int_t field)
Check if row is open and field index within range.
Definition: TOracleRow.cxx:64
const char * GetField(Int_t field)
Definition: TOracleRow.cxx:92
unsigned long ULong_t
Definition: RtypesCore.h:51
void Close(Option_t *opt="")
Close row.
Definition: TOracleRow.cxx:48
char ** fFieldsBuffer
Definition: TOracleRow.h:37
TOracleRow & operator=(const TOracleRow &)