#include <CommandCommon.hh>
Inherits fatalmind::oracle::CommandInterface< TM, SLMDC >< TM, SLMDC >, and fatalmind::SQL::Bind< VBC, CT >< fatalmind::oracle::oracleType, fatalmind::oracle::oracleTypeImpl< T > >.
Inherited by fatalmind::oracle::SQLExecute< TM, SLMDC >, and fatalmind::oracle::SQLSelectRow< TM, SLMDC >.
Public Types | |
|
typedef fatalmind::oracle::ResourceType < TM, SLMDC > | pool_type |
Public Member Functions | |
| virtual void | outputoperator (std::ostream &s) const |
| virtual void | execute (oracleResource< TM > &hand) |
| virtual void | execute (typename fatalmind::oracle::ResourceType< TM, SLMDC >::resource_t &rr)=0 |
| The execute method is the one which actually carries out the work. | |
| Clone * | clone () const |
| template<class Derived> | |
| Derived * | clone () const |
| template<typename T> | |
| void | bind (const unsigned int pos, const T &val, bool nul=false) |
| Binds an actual input value for an placeholder in the SQL statement. | |
| virtual void | clearParameters () |
| virtual void | bindoutputoperator (std::ostream &str) const |
Protected Types | |
|
typedef SQL::Bind< oracleType, oracleTypeImpl > | super_bind |
|
typedef std::vector< gc_ptr < VBC > > | _argst |
Protected Member Functions | |
| CommandCommon (const std::string &) | |
| CommandCommon can not exits allone, therefor the ctor is protected. | |
| virtual void | _execute (oracleResource< TM > &, StatementCache &)=0 |
| void | prepare (oracleHandles &, StatementCache &, const oracleStatement &oraSQL) |
| void | real_bind (oracleHandles &) |
| const std::string & | getSQL () const |
| virtual const std::string & | getCommandName () const |
|
const fatalmind::oracle::ResourceType < TM, SLMDC >::factory_t & | getFactory (const ResourcePool< fatalmind::oracle::ResourceType< TM, SLMDC > > &p) const |
| virtual Clone * | DoClone () const =0 |
Protected Attributes | |
| std::string | _SQL |
| this is a copy of the original SQL statement. | |
| StatementCache::handle_t | _sth |
| since the statementhandle is cached we need some protection | |
| _argst | _args |
Static Protected Attributes | |
| static const std::string | _CommandCommonName |
Friends | |
| class | Transaction< TM, SLMDC > |
| virtual void fatalmind::Command< fatalmind::oracle::ResourceType< TM, SLMDC > >::execute | ( | typename fatalmind::oracle::ResourceType< TM, SLMDC > ::resource_t & | rr | ) | [pure virtual, inherited] |
The execute method is the one which actually carries out the work.
This method gets called by ResourcePool with a (valid) plain resource which was obtained from the pool.
On normal execution (no exception) the resource will be free()ed, on abnormal execution (exception) the resource will be failed. If you need to throw an functional exception which should not cause failing of the resource, derive this exception from NoFailoverException.
| void fatalmind::SQL::Bind< VBC, CT >::bind | ( | const unsigned int | pos, | |
| const T & | val, | |||
| bool | nul = false | |||
| ) | [inline, inherited] |
Binds an actual input value for an placeholder in the SQL statement.
All binding is done by value! this means the passed data are copied to internal storage. Chaning your original copy of your data after passing it to bind() is therefore safe.
| pos | The position indicator. The number of placeholder (?) in the SQL string. Counted from the left starting at 0. | |
| val | the actual value. | |
| nul | NULL inidcator, if set to yes the actual value to be bound will be NULL. Please note that you still need to provide a valid value! |
Reimplemented from fatalmind::SQL::BindInterface.
std::string fatalmind::oracle::CommandCommon< TM, SLMDC >::_SQL [protected] |
1.5.5