EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
FairDbRowStream.cxx
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file FairDbRowStream.cxx
1 
2 #include "FairDbTableMetaData.h"
3 #include "FairDbRowStream.h"
4 #include "FairDbString.h"
5 
7 
8 
10  fCurCol(1),
11  fHasRowCounter(kFALSE),
12  fMetaData(metaData)
13 {
14  fHasRowCounter = fMetaData->HasRowCounter();
15 
16 }
17 
18 
19 
21 {
22 
23 }
24 
25 
27 {
28 
29  return fMetaData->ColFieldType(col);
30 }
31 
32 string FairDbRowStream::ColName(UInt_t col) const
33 {
34  return fMetaData->ColName(col);
35 }
36 
38 {
39 
41 }
42 
43 
45 {
46 
47  return fMetaData->ColName(fCurCol);
48 }
49 
50 
52 {
53 
54  return fMetaData->NumCols();
55 
56 }
57 
58 
60 {
61 
63 }
64 
66 {
67 
68  return fMetaData->TableName();
69 }