This is the class used to fill table rows from query results. More...
#include <TResultInputStream.hxx>
Public Member Functions | |
TResultInputStream (TDbiInRowStream &rs) | |
virtual | ~TResultInputStream () |
template<class T > | |
TResultInputStream & | operator>> (T &dest) |
Private Attributes | |
TDbiInRowStream & | fResultSet |
This is the class used to fill table rows from query results.
Definition at line 11 of file TResultInputStream.hxx.
TResultInputStream::TResultInputStream | ( | TDbiInRowStream & | rs | ) | [inline] |
Definition at line 15 of file TResultInputStream.hxx.
00015 : fResultSet(rs) {}
virtual TResultInputStream::~TResultInputStream | ( | ) | [inline, virtual] |
Definition at line 16 of file TResultInputStream.hxx.
TResultInputStream& TResultInputStream::operator>> | ( | T & | dest | ) | [inline] |
Definition at line 18 of file TResultInputStream.hxx.
References fResultSet.
00018 { 00019 fResultSet >> dest; 00020 return *this; 00021 }
TDbiInRowStream& TResultInputStream::fResultSet [private] |
Definition at line 25 of file TResultInputStream.hxx.
Referenced by operator>>().