Qore TableMapper Module Reference
1.3
|
the TableMapper namespace contains all the definitions in the TableMapper module More...
Classes | |
class | AbstractSqlStatementOutboundMapper |
provides an abstract base for all SQL based outbound mappers More... | |
class | InboundIdentityTableMapper |
maps from source to target tables with exactly the same structure More... | |
class | InboundTableMapper |
provides an inbound data mapper to a Table target More... | |
class | InboundTableMapperIterator |
provides a hash iterator based on a InboundTableMapper object and an iterator input source; for each iteration the iterted row is inserted into the Table target More... | |
class | SqlStatementMapperIterator |
provides a hash iterator based on a mapper object and an SQLStatement or SqlUtil select hash More... | |
Functions | |
commit () | |
commits the transaction and frees the Qore::SQL::AbstractDatasource transaction thread resource | |
constructor (hash< auto > mapv, *hash< auto > opts) | |
builds the object based on an optional hash providing field mappings, data constraints, and optionally custom mapping logic More... | |
*hash< string, auto > | getData () |
Retrieve mapped data as a hash of lists. More... | |
*list< auto > | getDataRows () |
Retrieve mapped data as a list of hashes. More... | |
abstract Qore::SQL::AbstractDatasource | getDatasource () |
returns the AbstractDatasource object associated with this object | |
Qore::SQL::SQLStatement | getRowIterator () |
returns a row iterator for the underlying SQL statement for this object More... | |
Qore::SQL::AbstractSQLStatement | getStatement () |
returns a row iterator for the underlying SQL statement for this object More... | |
hash< string, hash< MapperOptionInfo > > | getUserOptions () |
returns mapper options useful for users | |
abstract | initOptions (reference< hash > opts) |
re-implement to initialize options | |
abstract | initStatement () |
re-implement to initialize Qore::SQL::AbstractSQLStatement on demand | |
SqlStatementMapperIterator | iterator () |
Returns an SqlStatementMapperIterator based on the current object. More... | |
hash< auto > | optionKeys () |
returns a list of valid constructor options for this class (can be overridden in subclasses) More... | |
rollback () | |
rolls the transaction back and frees the Qore::SQL::AbstractDatasource transaction thread resource | |
the TableMapper namespace contains all the definitions in the TableMapper module
builds the object based on an optional hash providing field mappings, data constraints, and optionally custom mapping logic
The source statement is also scanned using Qore::SQL::AbstractSQLStatement and column definitions are used to update the source record specification.
mapv | a optional hash providing overrides for the default 1:1 input to output field mappings; each hash key is the name in lower case of the output column in the target table; each value is either True (meaning no translations are done; the data is copied 1:1) or a hash describing the mapping; see Mapper Specification Format for detailed documentation for this option |
opts | a hash of options for the mapper; see Mapper Options for a description of valid mapper options plus the following options specific to this object:
|
MAP-ERROR | invalid select_block size; must be >= 1 if present |
Retrieve mapped data as a hash of lists.
The size of the batch is driven by the select_block
option passed in the constructor.
The hash is in Qore::SQL::AbstractDatasource::select() form - meaning it is a hash with column names as keys. Values are lists of column values. This data structure is used for Qore::context statement or BulksSqlUtil operations.
*list<auto> TableMapper::getDataRows | ( | ) |
Retrieve mapped data as a list of hashes.
Size of the batch is driven by the select_block
option passed in the constructor.
List is in Qore::SQL::AbstractDatasource::selectRows() form - meaning it is a list with hashes, where every hash has column names as keys with single values as hash values.
Qore::SQL::SQLStatement TableMapper::getRowIterator | ( | ) |
returns a row iterator for the underlying SQL statement for this object
Qore::SQL::AbstractSQLStatement TableMapper::getStatement | ( | ) |
returns a row iterator for the underlying SQL statement for this object
SqlStatementMapperIterator TableMapper::iterator | ( | ) |
Returns an SqlStatementMapperIterator based on the current object.
Data are retrieved with standard Qore::AbstractIterator::getValue() or similar. Value is a hash with column names as keys.
hash<auto> TableMapper::optionKeys | ( | ) |
returns a list of valid constructor options for this class (can be overridden in subclasses)