show table implemented partially
[csql.git] / include / SqlLogStatement.h
blob85219514cd511a94c49ffc79fc86e031daafb89f
1 /***************************************************************************
2 * Copyright (C) 2007 by Prabakaran Thirumalai *
3 * praba_tuty@yahoo.com *
4 * *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
9 * *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
14 * *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
20 #ifndef SQLLOGSTATEMENT_H
21 #define SQLLOGSTATEMENT_H
22 #include <AbsSqlStatement.h>
23 #include <SqlLogConnection.h>
24 #include <SqlFactory.h>
25 #include <CSql.h>
26 class SqlLogStatement: public AbsSqlStatement
28 public:
29 SqlLogStatement(){innerStmt = NULL; con = NULL; needLog= false; sid=0; }
31 void setConnection(AbsSqlConnection *conn)
33 if (innerStmt) innerStmt->setConnection(conn->getInnerConnection());
34 con = conn;
36 AbsSqlStatement *getInnerStatement(){ return innerStmt;}
37 bool isNonSelectDML(char *stmtstr);
38 DbRetVal prepare(char *stmt);
40 DbRetVal execute(int &rowsAffect);
41 DbRetVal bindParam(int pos, void*);
43 DbRetVal bindField(int pos, void* val);
45 void* fetch();
46 void* fetch(DbRetVal &rv);
47 void* fetchAndPrint(bool SQL);
48 void* next();
49 DbRetVal close();
50 int noOfProjFields();
52 void* getFieldValuePtr( int pos );
54 DbRetVal free();
56 int noOfParamFields();
58 DbRetVal getProjFldInfo(int projPos, FieldInfo *&info);
60 DbRetVal getParamFldInfo(int paramPos, FieldInfo *&info);
62 void setShortParam(int paramPos, short value);
63 void setIntParam(int paramPos, int value);
64 void setLongParam(int paramPos, long value);
65 void setLongLongParam(int paramPos, long long value);
66 void setByteIntParam(int paramPos, ByteInt value);
67 void setFloatParam(int paramPos, float value);
68 void setDoubleParam(int paramPos, double value);
69 void setStringParam(int paramPos, char *value);
70 void setDateParam(int paramPos, Date value);
71 void setTimeParam(int paramPos, Time value);
72 void setTimeStampParam(int paramPos, TimeStamp value);
73 void setBinaryParam(int paramPos, void *value);
74 bool isSelect();
75 bool isFldNull(int pos);
76 void setNull(int pos);
77 int getFldPos(char *name){}
78 List getAllTableNames();
79 bool isCached;
80 TableSyncMode mode;
81 private:
83 bool needLog;
84 int sid; //statement id
85 List paramList;
87 static UniqueID stmtUID;
88 friend class SqlFactory;
91 #endif