Adding tests for composite keys
[csql.git] / include / CacheTableLoader.h
blob8ce2c28d93d705c99dfa752b7cbaa7c12348f02c
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];
27 public:
28 CacheTableLoader(){strcpy(tableName,"");}
29 void setConnParam(char *user, char *pass){ strcpy(userName, user); strcpy(password, pass); }
30 void setTable(char *tablename) { strcpy(tableName,tablename); }
31 DbRetVal addToCacheTableFile();
32 DbRetVal removeFromCacheTableFile();
33 DbRetVal load(bool tabDef=true);
34 DbRetVal reload();
35 DbRetVal unload(bool tabDefinition = true);
36 DbRetVal refresh();
37 DbRetVal recoverAllCachedTables();
38 DbRetVal load(DatabaseManager *dbMgr, bool tabDef);
39 DbRetVal isTableCached();
42 class BindBuffer
44 public:
45 void *csql;
46 void *targetdb;
47 DataType type;