using tree index
[csql.git] / include / CacheTableLoader.h
blob894ddb47d476185f7bc675792d49e023d95c551b
1 /***************************************************************************
2 * Copyright (C) 2007 by www.databasecache.com *
3 * Contact: praba_tuty@databasecache.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 ***************************************************************************/
16 #include <CSql.h>
17 #include <sql.h>
18 #include <sqlext.h>
19 #include <Network.h>
21 class CacheTableLoader
23 char tableName[IDENTIFIER_LENGTH];
24 char userName[IDENTIFIER_LENGTH];
25 char password[IDENTIFIER_LENGTH];
26 char conditionVal[IDENTIFIER_LENGTH]; //added newly
27 public:
28 CacheTableLoader()
30 strcpy(tableName,"");
31 strcpy(conditionVal,"");
33 void setConnParam(char *user, char *pass){ strcpy(userName, user); strcpy(password, pass); }
34 void setTable(char *tablename) { strcpy(tableName,tablename); }
35 void setCondition(char *condition){strcpy(conditionVal,condition);} //new one
36 DbRetVal addToCacheTableFile();
37 DbRetVal removeFromCacheTableFile();
38 DbRetVal load(bool tabDef=true);
39 DbRetVal reload();
40 DbRetVal unload(bool tabDefinition = true);
41 DbRetVal refresh();
42 DbRetVal recoverAllCachedTables();
43 DbRetVal load(DatabaseManager *dbMgr, bool tabDef);
44 DbRetVal isTableCached();
45 DbRetVal isTablePresent(char *table,char *condition);// new one by :Jitendra
48 class BindBuffer
50 public:
51 void *csql;
52 void *targetdb;
53 DataType type;