12 #ifndef ROOT_TSQLResult
13 #define ROOT_TSQLResult
32 class TSQLResult :
public TObject {
37 TSQLResult() : fRowCount(0) { }
40 virtual ~TSQLResult() { }
42 virtual void Close(Option_t *option=
"") = 0;
43 virtual Int_t GetFieldCount() = 0;
44 virtual const char *GetFieldName(Int_t field) = 0;
45 virtual Int_t GetRowCount()
const {
return fRowCount; }
46 virtual TSQLRow *Next() = 0;
48 ClassDef(TSQLResult,0)