More information on this package is here.
#ifndef __TQUERY__
#define __TQUERY__
#include <iostream>
using namespace std;
#include <stdlib.h>
#include <unistd.h>
#include <TSQLServer.h>
#include <TSQLResult.h>
#include <TSQLRow.h>
#include "TROOT.h"
#include "TObject.h"
#include "TString.h"
class TQuery : public TObject{
public:
TString fQuery;
TQuery();
virtual ~TQuery();
const char *Data();
void Preview();
void Reset();
TQuery & operator<<( int x_int);
TQuery & operator<<( float x_float);
TQuery & TQuery::operator<<(const char *n_char);
float FloatOf(const char *chr_float="0.0");
Int_t IntOf(const char *chr_int="0");
ClassDef(TQuery,1)
};
#endif
Author: Maurik Holtrop
Last update:
CopyLeft - This code is freely available.
ROOT Home page - ClasTool Class index - Class Hierarchy - Top of the page