00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef RESOURCEPOOL_SQL_SQLBATCHCOMMAND_HH
00026 #define RESOURCEPOOL_SQL_SQLBATCHCOMMAND_HH
00027
00028 #include "ResourcePool/ResourcePool.hh"
00029 #include "ResourcePool/BatchCommand.hh"
00030
00031 namespace fatalmind {
00032 namespace SQL {
00033
00034 template<class CommandType>
00035 class SQLBatchCommand: public BatchCommand<CommandType>
00036 {
00037 public:
00038 typedef BatchCommand<CommandType> super;
00039
00040 SQLBatchCommand(const ResourcePool<typename CommandType::pool_type >& p, bool cont = false)
00041 : super(cont)
00042 {
00043 }
00044
00045 SQLBatchCommand(bool cont = false)
00046 : super(cont)
00047 {
00048 }
00049
00050 SQLBatchCommand(const SQLBatchCommand& rho)
00051 : super(rho)
00052 {
00053 }
00054
00055 virtual ~SQLBatchCommand() {
00056 }
00057
00058 virtual Clone* DoClone() const {
00059 return new SQLBatchCommand(*this);
00060 }
00061 };
00062
00063 }
00064 }
00065
00066 #endif