Revision e4848c55
include/SqlDB.h | ||
---|---|---|
44 | 44 |
* @return 0 on success |
45 | 45 |
* |
46 | 46 |
*/ |
47 |
int exec_bootstrap(ostringstream& cmd) |
|
47 |
virtual int exec_bootstrap(ostringstream& cmd)
|
|
48 | 48 |
{ |
49 | 49 |
return exec(cmd, 0, false); |
50 | 50 |
} |
51 | 51 |
|
52 |
int exec_rd(ostringstream& cmd, Callbackable* obj) |
|
52 |
virtual int exec_rd(ostringstream& cmd, Callbackable* obj)
|
|
53 | 53 |
{ |
54 | 54 |
return exec(cmd, obj, false); |
55 | 55 |
} |
56 | 56 |
|
57 |
int exec_wr(ostringstream& cmd) |
|
57 |
virtual int exec_wr(ostringstream& cmd)
|
|
58 | 58 |
{ |
59 | 59 |
return exec(cmd, 0, false); |
60 | 60 |
} |
Also available in: Unified diff