fatalmind::SQL::Bind< VBC, CT > Class Template Reference

#include <Bind.hh>

Inherits fatalmind::SQL::BindInterface.

Inherited by fatalmind::mysql::SQLSelect, and fatalmind::oracle::CommandCommon< TM, SLMDC >.

List of all members.


Detailed Description

template<class VBC, template< class > class CT>
class fatalmind::SQL::Bind< VBC, CT >

This class defines the common interface for all SQL* classes which do accept input data via placeholders.

Public Types

typedef VBC _datat
typedef gc_ptr< VBC > _ptrt
typedef std::vector
< _ptrt
_argst

Public Member Functions

virtual void bind (const unsigned int pos, const char &val, bool isnull=false)
 Binds an actual input value for an placeholder in the SQL statement.
virtual void bind (const unsigned int pos, const signed char &val, bool isnull=false)
virtual void bind (const unsigned int pos, const unsigned char &val, bool isnull=false)
virtual void bind (const unsigned int pos, const short int &val, bool isnull=false)
virtual void bind (const unsigned int pos, const unsigned short int &val, bool isnull=false)
virtual void bind (const unsigned int pos, const int &val, bool isnull=false)
virtual void bind (const unsigned int pos, const unsigned int &val, bool isnull=false)
virtual void bind (const unsigned int pos, const long int &val, bool isnull=false)
virtual void bind (const unsigned int pos, const unsigned long int &val, bool isnull=false)
virtual void bind (const unsigned int pos, const float &val, bool isnull=false)
virtual void bind (const unsigned int pos, const double &val, bool isnull=false)
virtual void bind (const unsigned int pos, const long double &val, bool isnull=false)
virtual void bind (const unsigned int pos, const std::string &val, bool isnull=false)
virtual void clearParameters ()
virtual void bindoutputoperator (std::ostream &str) const

Static Public Member Functions

static void bindoutputoperator (std::ostream &str, const _argst &)

Protected Attributes

_argst _args

Member Function Documentation

template<class VBC, template< class > class CT>
virtual void fatalmind::SQL::Bind< VBC, CT >::bind ( const unsigned int  pos,
const char &  val,
bool  isnull = false 
) [inline, virtual]

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. Changing your original copy of your data after passing it to bind() is therefore safe.

Parameters:
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!

Implements fatalmind::SQL::BindInterface.


The documentation for this class was generated from the following files:
Generated on Mon Nov 9 16:21:24 2009 for ResourcePool by  doxygen 1.5.3