12 #ifndef ROOT_TSQLiteResult
13 #define ROOT_TSQLiteResult
17 #if !defined(__CINT__)
24 class TSQLiteResult :
public TSQLResult {
27 sqlite3_stmt *fResult;
29 Bool_t IsValid(Int_t field);
32 TSQLiteResult(
void *result);
35 void Close(Option_t *opt=
"");
36 Int_t GetFieldCount();
37 const char *GetFieldName(Int_t field);
38 Int_t GetRowCount()
const;
41 ClassDef(TSQLiteResult, 0)