Logo ROOT   6.14/05
Reference Guide
TMySQLRow.h
Go to the documentation of this file.
1 // @(#)root/mysql:$Id$
2 // Author: Fons Rademakers 15/02/2000
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6  * All rights reserved. *
7  * *
8  * For the licensing terms see $ROOTSYS/LICENSE. *
9  * For the list of contributors see $ROOTSYS/README/CREDITS. *
10  *************************************************************************/
11 
12 #ifndef ROOT_TMySQLRow
13 #define ROOT_TMySQLRow
14 
15 #include "TSQLRow.h"
16 
17 #include <mysql.h>
18 
19 class TMySQLRow : public TSQLRow {
20 
21 private:
22  MYSQL_RES *fResult; // current result set
23  MYSQL_ROW fFields; // current row
24  ULong_t *fFieldLength; // length of each field in the row
25 
26  Bool_t IsValid(Int_t field);
27 
28 public:
29  TMySQLRow(void *result, ULong_t rowHandle);
30  ~TMySQLRow();
31 
32  void Close(Option_t *opt="");
34  const char *GetField(Int_t field);
35 
36  ClassDef(TMySQLRow,0) // One row of MySQL query result
37 };
38 
39 #endif
40 
const char Option_t
Definition: RtypesCore.h:62
TMySQLRow(void *result, ULong_t rowHandle)
Single row of query result.
Definition: TMySQLRow.cxx:20
void Close(Option_t *opt="")
Close row.
Definition: TMySQLRow.cxx:39
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
~TMySQLRow()
Destroy row object.
Definition: TMySQLRow.cxx:30
#define ClassDef(name, id)
Definition: Rtypes.h:320
MYSQL_RES * fResult
Definition: TMySQLRow.h:22
ULong_t * fFieldLength
Definition: TMySQLRow.h:24
MYSQL_ROW fFields
Definition: TMySQLRow.h:23
ULong_t GetFieldLength(Int_t field)
Get length in bytes of specified field.
Definition: TMySQLRow.cxx:68
unsigned long ULong_t
Definition: RtypesCore.h:51
const char * GetField(Int_t field)
Get specified field from row (0 <= field < GetFieldCount()).
Definition: TMySQLRow.cxx:87
Bool_t IsValid(Int_t field)
Check if row is open and field index within range.
Definition: TMySQLRow.cxx:52