#ifndef ROOT_TODBCRow
#define ROOT_TODBCRow
#ifndef ROOT_TSQLRow
#include "TSQLRow.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
#ifdef __CINT__
typedef void * SQLHSTMT;
#else
#ifdef WIN32
#include "windows.h"
#endif
#include <sql.h>
#endif
class TODBCRow : public TSQLRow {
protected:
SQLHSTMT fHstmt;
Int_t fFieldCount;
char **fBuffer;
ULong_t *fLengths;
void CopyFieldValue(Int_t field);
public:
TODBCRow(SQLHSTMT stmt, Int_t fieldcount);
virtual ~TODBCRow();
void Close(Option_t *opt="");
ULong_t GetFieldLength(Int_t field);
const char *GetField(Int_t field);
ClassDef(TODBCRow,0)
};
#endif
ROOT page - Class index - Class Hierarchy - Top of the page
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.