Logo ROOT   6.12/07
Reference Guide
TPgSQLStatement.h
Go to the documentation of this file.
1 // @(#)root/mysql:$Id$
2 // Author: Dennis Box (dbox@fnal.gov) 3/12/2007
3 
4 /*************************************************************************
5  * Copyright (C) 1995-2007, 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_TPgSQLStatement
13 #define ROOT_TPgSQLStatement
14 
15 #include "TSQLStatement.h"
16 
17 #include <libpq-fe.h>
18 #ifdef USE_LDAP
19 #undef USE_LDAP
20 #endif
21 
22 #define pgsql_success(x) (((x) == PGRES_EMPTY_QUERY) \
23  || ((x) == PGRES_COMMAND_OK) \
24  || ((x) == PGRES_TUPLES_OK))
25 
26 struct PgSQL_Stmt_t {
27  PGconn *fConn;
28  PGresult *fRes;
29 };
30 
31 
33 
34 private:
35  PgSQL_Stmt_t *fStmt; //! executed statement
36  Int_t fNumBuffers; //! number of statement parameters
37  char **fBind; //! array of data for input
38  char **fFieldName; //! array of column names
39  Int_t fWorkingMode; //! 1 - setting parameters, 2 - retrieving results
40  Int_t fIterationCount;//! number of iteration
41  int *fParamLengths; //! length of column
42  int *fParamFormats; //! data type (OID)
45 
46  Bool_t IsSetParsMode() const { return fWorkingMode==1; }
47  Bool_t IsResultSetMode() const { return fWorkingMode==2; }
48 
49  Bool_t SetSQLParamType(Int_t npar, int sqltype, bool sig, int sqlsize = 0);
50 
51  long double ConvertToNumeric(Int_t npar);
52  const char *ConvertToString(Int_t npar);
53 
54  void FreeBuffers();
55  void SetBuffersNumber(Int_t n);
56 
57  void ConvertTimeToUTC(const TString &PQvalue, Int_t& year, Int_t& month, Int_t& day, Int_t& hour, Int_t& min, Int_t& sec);
58 
59 public:
60  TPgSQLStatement(PgSQL_Stmt_t* stmt, Bool_t errout = kTRUE);
61  virtual ~TPgSQLStatement();
62 
63  virtual void Close(Option_t * = "");
64 
65  virtual Int_t GetBufferLength() const { return 1; }
66  virtual Int_t GetNumParameters();
67 
68  virtual Bool_t SetNull(Int_t npar);
69  virtual Bool_t SetInt(Int_t npar, Int_t value);
70  virtual Bool_t SetUInt(Int_t npar, UInt_t value);
71  virtual Bool_t SetLong(Int_t npar, Long_t value);
72  virtual Bool_t SetLong64(Int_t npar, Long64_t value);
73  virtual Bool_t SetULong64(Int_t npar, ULong64_t value);
74  virtual Bool_t SetDouble(Int_t npar, Double_t value);
75  virtual Bool_t SetString(Int_t npar, const char* value, Int_t maxsize = 256);
76  virtual Bool_t SetBinary(Int_t npar, void* mem, Long_t size, Long_t maxsize = 0x1000);
77  virtual Bool_t SetLargeObject(Int_t npar, void* mem, Long_t size, Long_t maxsize = 0x1000);
78  virtual Bool_t SetDate(Int_t npar, Int_t year, Int_t month, Int_t day);
79  virtual Bool_t SetTime(Int_t npar, Int_t hour, Int_t min, Int_t sec);
80  virtual Bool_t SetDatime(Int_t npar, Int_t year, Int_t month, Int_t day, Int_t hour, Int_t min, Int_t sec);
81  virtual Bool_t SetTimestamp(Int_t npar, Int_t year, Int_t month, Int_t day, Int_t hour, Int_t min, Int_t sec, Int_t frac = 0);
82 
83  virtual Bool_t NextIteration();
84 
85  virtual Bool_t Process();
86  virtual Int_t GetNumAffectedRows();
87 
88  virtual Bool_t StoreResult();
89  virtual Int_t GetNumFields();
90  virtual const char *GetFieldName(Int_t nfield);
91  virtual Bool_t NextResultRow();
92 
93  virtual Bool_t IsNull(Int_t npar);
94  virtual Int_t GetInt(Int_t npar);
95  virtual UInt_t GetUInt(Int_t npar);
96  virtual Long_t GetLong(Int_t npar);
97  virtual Long64_t GetLong64(Int_t npar);
98  virtual ULong64_t GetULong64(Int_t npar);
99  virtual Double_t GetDouble(Int_t npar);
100  virtual const char *GetString(Int_t npar);
101  virtual Bool_t GetBinary(Int_t npar, void* &mem, Long_t& size);
102  virtual Bool_t GetLargeObject(Int_t npar, void* &mem, Long_t& size);
103  virtual Bool_t GetDate(Int_t npar, Int_t& year, Int_t& month, Int_t& day);
104  virtual Bool_t GetTime(Int_t npar, Int_t& hour, Int_t& min, Int_t& sec);
105  virtual Bool_t GetDatime(Int_t npar, Int_t& year, Int_t& month, Int_t& day, Int_t& hour, Int_t& min, Int_t& sec);
106  virtual Bool_t GetTimestamp(Int_t npar, Int_t& year, Int_t& month, Int_t& day, Int_t& hour, Int_t& min, Int_t& sec, Int_t&);
107 
108  ClassDef(TPgSQLStatement, 0); // SQL statement class for PgSQL DB
109 };
110 
111 #endif
Int_t fWorkingMode
array of column names
long long Long64_t
Definition: RtypesCore.h:69
int * fParamFormats
length of column
const char Option_t
Definition: RtypesCore.h:62
Int_t fIterationCount
1 - setting parameters, 2 - retrieving results
char ** fBind
number of statement parameters
Basic string class.
Definition: TString.h:125
int Int_t
Definition: RtypesCore.h:41
bool Bool_t
Definition: RtypesCore.h:59
PGresult * fRes
PGconn * fConn
char ** fFieldName
array of data for input
#define ClassDef(name, id)
Definition: Rtypes.h:320
Int_t fNumBuffers
executed statement
virtual Int_t GetBufferLength() const
Bool_t IsSetParsMode() const
PgSQL_Stmt_t * fStmt
unsigned int UInt_t
Definition: RtypesCore.h:42
int * fParamLengths
number of iteration
long Long_t
Definition: RtypesCore.h:50
double Double_t
Definition: RtypesCore.h:55
unsigned long long ULong64_t
Definition: RtypesCore.h:70
Bool_t IsResultSetMode() const
Int_t fNumResultRows
data type (OID)
const Bool_t kTRUE
Definition: RtypesCore.h:87
const Int_t n
Definition: legend1.C:16