$darkmode
Qore DbDataProvider Module Reference 2.1.1
DbTableBulkRecordInterface.qc.dox.h
1 // -*- mode: c++; indent-tabs-mode: nil -*-
3 
26 namespace DbDataProvider {
28 class DbTableBulkRecordInterface : public AbstractDataProviderBulkRecordInterface {
29 
30 public:
31 private:
33  AbstractTable table;
34 
36  AbstractSQLStatement stmt;
37 
40 
41 public:
42 
44 
49  constructor(int block_size, AbstractTable table, *hash<auto> where_cond, *hash<auto> search_options) ;
50 
51 
54 
55 
58 
59 
61 
66 protected:
67  hash<string, list<auto>> getValueImpl();
68 public:
69 
70 
72 
74  *hash<string, AbstractDataField> getRecordType();
75 
76 };
77 };
Defines the record iterator class for Table-based iterators.
Definition: DbTableBulkRecordInterface.qc.dox.h:28
destructor()
rolls back the transaction if a transaction lock was acquired in the constructor and keepTransactionL...
constructor(int block_size, AbstractTable table, *hash< auto > where_cond, *hash< auto > search_options)
creates the iterator
bool release_transaction
release the transaction with a rollback in the destructor?
Definition: DbTableBulkRecordInterface.qc.dox.h:39
AbstractTable table
The table being iterated.
Definition: DbTableBulkRecordInterface.qc.dox.h:33
keepTransactionLock()
Ensures that no rollback is performed when the object is destroyed.
hash< string, list< auto > > getValueImpl()
Returns a hash of lists according to the block size.
*hash< string, AbstractDataField > getRecordType()
Returns the record description, if available.
AbstractSQLStatement stmt
the statement being iterated
Definition: DbTableBulkRecordInterface.qc.dox.h:36
Qore AbstractDbRecordIterator class definition.
Definition: AbstractDbRecordIterator.qc.dox.h:26