$darkmode
Qore DbDataProvider Module Reference 2.1.1
DbTableRecordIterator.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace DbDataProvider {
29 
30 public:
31 protected:
33  AbstractTable table;
34 
35 public:
36 
38 
41  constructor(AbstractTable table, *hash<auto> where_cond, *hash<auto> search_options) ;
42 
43 
45 
51  auto memberGate(string key);
52 
53 
55 
57  *hash<string, AbstractDataField> getRecordType();
58 
59 };
60 };
Defines the record iterator class for Table-based iterators.
Definition: AbstractDbRecordIterator.qc.dox.h:28
Defines the record iterator class for Table-based iterators.
Definition: DbTableRecordIterator.qc.dox.h:28
*hash< string, AbstractDataField > getRecordType()
Returns the record description, if available.
constructor(AbstractTable table, *hash< auto > where_cond, *hash< auto > search_options)
creates the iterator
auto memberGate(string key)
Returns the value of the given field in the current record, if the iterator is valid.
AbstractTable table
The table being iterated.
Definition: DbTableRecordIterator.qc.dox.h:33
Qore AbstractDbRecordIterator class definition.
Definition: AbstractDbRecordIterator.qc.dox.h:26