Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
TPgSQLRow.h
Go to the documentation of this file.
1// @(#)root/pgsql:$Id$
2// Author: g.p.ciceri <gp.ciceri@acm.org> 01/06/2001
3
4/*************************************************************************
5 * Copyright (C) 1995-2001, 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_TPgSQLRow
13#define ROOT_TPgSQLRow
14
15#include "TSQLRow.h"
16
17struct pg_result;
18typedef struct pg_result PGresult;
19
20class TPgSQLRow : public TSQLRow {
21
22private:
23 PGresult *fResult{nullptr}; // current result set
24 ULong_t fRowNum{0}; // row number
25
26 Bool_t IsValid(Int_t field);
27
28public:
29 TPgSQLRow(PGresult *result, ULong_t rowHandle);
30 ~TPgSQLRow();
31
32 void Close(Option_t *opt="") final;
33 ULong_t GetFieldLength(Int_t field) final;
34 const char *GetField(Int_t field) final;
35
36 ClassDefOverride(TPgSQLRow,0) // One row of PgSQL query result
37};
38
39#endif
bool Bool_t
Definition RtypesCore.h:63
int Int_t
Definition RtypesCore.h:45
unsigned long ULong_t
Definition RtypesCore.h:55
const char Option_t
Definition RtypesCore.h:66
#define ClassDefOverride(name, id)
Definition Rtypes.h:341
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t Float_t Float_t Int_t Int_t UInt_t UInt_t Rectangle_t result
struct pg_result PGresult
struct pg_result PGresult
Definition TPgSQLRow.h:18
Bool_t IsValid(Int_t field)
Check if row is open and field index within range.
Definition TPgSQLRow.cxx:52
ULong_t fRowNum
Definition TPgSQLRow.h:24
void Close(Option_t *opt="") final
Close row.
Definition TPgSQLRow.cxx:40
PGresult * fResult
Definition TPgSQLRow.h:23
~TPgSQLRow()
Destroy row object.
Definition TPgSQLRow.cxx:31
ULong_t GetFieldLength(Int_t field) final
Get length in bytes of specified field.
Definition TPgSQLRow.cxx:64
const char * GetField(Int_t field) final
Get specified field from row (0 <= field < GetFieldCount()).
Definition TPgSQLRow.cxx:82