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

#include <BindOut.hh>

Inherits fatalmind::SQL::BindOutInterface.

Inherited by fatalmind::mysql::SQLSelect, and fatalmind::oracle::oracleBindOut.

List of all members.


Detailed Description

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

This class defines the common interface for all SQL* classes which do return output colums.

Public Member Functions

template<typename T>
void bindout (const unsigned int pos, T &val, bool &isnull)
 Specify where the output data of an select statement are to be stored.
template<typename T>
void bindout (const unsigned int pos, T &val, BindOutNotNullConstraint=NOTNULL)

Static Public Attributes

static bool notnullconstant
static BindOutNotNullConstraint NOTNULL

Protected Types

typedef gc_ptr< VBC > _refT
typedef std::vector< _refT_outparamt

Protected Member Functions

VBC & getOutParam (const unsigned int pos)
void setIterators ()

Protected Attributes

_outparamt _outparam
_outparamt::const_iterator _begin
_outparamt::const_iterator _end

Member Function Documentation

template<class VBC, template< class > class CT>
template<typename T>
void fatalmind::SQL::BindOut< VBC, CT >::bindout ( const unsigned int  pos,
T &  val,
bool &  isnull 
) [inline]

Specify where the output data of an select statement are to be stored.

You need to specify an place where the columns for an select statement are to be stored. After each fetch those variables will be propagated with the actual values received from the select statement. You can also specify a bool which will be used as indicator if the fatched column is NULL. If you omit this third, optional parameter an Exception will be thrown in case a fetched column is NULL.

Parameters:
pos The column number to be bound. Numbering starts with the leftmost column at 0.
val The variable which should contain the value of this column after the fetch. Each time a row is retrieved the according column value value will be available in that variable. The content of the variable will not be changed in case the column is NULL or the execution failed because of an exception. Exclusive access is expected, so there are no synchronization effords taken by the select commands. The variable must be availalbe throughout the whole time of execution.
isnull The optional third argument specifies a bool variable which will be set to true if the fetched column is NULL or to false otherwise. You must supply this indicator variable if you might retrieve NULL for this column. Not supplying an indicator varaible will cause an
Indicator variable required but not supplied.
exception.

Reimplemented from fatalmind::SQL::BindOutInterface.


The documentation for this class was generated from the following files:

Generated on Mon Jun 9 11:27:04 2008 for ResourcePool by  doxygen 1.5.5