#include <BindInterface.hh>
Inherited by fatalmind::SQL::Bind< VBC, CT >, fatalmind::SQL::Bind< fatalmind::mysql::SQLType, fatalmind::mysql::SQLTypeImpl< T > >, fatalmind::SQL::Bind< fatalmind::oracle::oracleType, fatalmind::oracle::oracleTypeImpl< T > >, fatalmind::SQL::RTSQLExecute< TM >, fatalmind::SQL::RTSQLSelect< TM >, and fatalmind::SQL::RTSQLSelectRow< TM >.
It's not possible to use this polimorphycally since the methods are not virtual (and can not be virtual since it is a member template).
Public Member Functions | |
virtual void | bind (const unsigned int pos, const char &val, bool isnull=false)=0 |
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)=0 |
virtual void | bind (const unsigned int pos, const unsigned char &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const short int &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const unsigned short int &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const int &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const unsigned int &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const long int &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const unsigned long int &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const float &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const double &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const long double &val, bool isnull=false)=0 |
virtual void | bind (const unsigned int pos, const std::string &val, bool isnull=false)=0 |
virtual void | clearParameters ()=0 |
virtual void fatalmind::SQL::BindInterface::bind | ( | const unsigned int | pos, | |
const char & | val, | |||
bool | isnull = false | |||
) | [pure 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.
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! |
Implemented in fatalmind::SQL::Bind< VBC, CT >, fatalmind::SQL::RTSQLExecute< TM >, fatalmind::SQL::RTSQLSelect< TM >, fatalmind::SQL::RTSQLSelectRow< TM >, fatalmind::SQL::Bind< fatalmind::oracle::oracleType, fatalmind::oracle::oracleTypeImpl< T > >, and fatalmind::SQL::Bind< fatalmind::mysql::SQLType, fatalmind::mysql::SQLTypeImpl< T > >.