Lightweight 0.1.0
|
Main API for mapping records to and from the database using high level C++ syntax. More...
#include <DataMapper.hpp>
Public Member Functions | |
DataMapper () | |
Constructs a new data mapper, using the default connection. | |
DataMapper (SqlConnection &&connection) | |
Constructs a new data mapper, using the given connection. | |
DataMapper (SqlConnectionString connectionString) | |
Constructs a new data mapper, using the given connection string. | |
DataMapper (DataMapper const &)=delete | |
DataMapper (DataMapper &&) noexcept=default | |
DataMapper & | operator= (DataMapper const &)=delete |
DataMapper & | operator= (DataMapper &&) noexcept=default |
SqlConnection const & | Connection () const noexcept |
Returns the connection reference used by this data mapper. | |
SqlConnection & | Connection () noexcept |
Returns the mutable connection reference used by this data mapper. | |
template<typename Record > | |
std::vector< std::string > | CreateTableString (SqlServerType serverType) |
Constructs a string list of SQL queries to create the table for the given record type. | |
template<typename FirstRecord , typename... MoreRecords> | |
std::vector< std::string > | CreateTablesString (SqlServerType serverType) |
Constructs a string list of SQL queries to create the tables for the given record types. | |
template<typename Record > | |
void | CreateTable () |
Creates the table for the given record type. | |
template<typename FirstRecord , typename... MoreRecords> | |
void | CreateTables () |
Creates the tables for the given record types. | |
template<typename Record > | |
RecordPrimaryKeyType< Record > | Create (Record &record) |
Creates a new record in the database. | |
template<typename Record > | |
RecordPrimaryKeyType< Record > | CreateExplicit (Record const &record) |
Creates a new record in the database. | |
template<typename Record , typename... Args> | |
std::optional< Record > | QuerySingle (SqlSelectQueryBuilder selectQuery, Args &&... args) |
Queries a single record from the database based on the given query. | |
template<typename Record , typename... PrimaryKeyTypes> | |
std::optional< Record > | QuerySingle (PrimaryKeyTypes &&... primaryKeys) |
Queries a single record (based on primary key) from the database. | |
template<typename Record > | |
SqlQuerySingleBuilder< Record > | QuerySingle () |
Queries a single record from the database. | |
template<typename Record , typename ColumnName , typename T > | |
std::optional< Record > | QuerySingleBy (ColumnName const &columnName, T const &value) |
Queries a single record by the given column name and value. | |
template<typename Record , typename... InputParameters> | |
std::vector< Record > | Query (SqlSelectQueryBuilder::ComposedQuery const &selectQuery, InputParameters &&... inputParameters) |
Queries multiple records from the database, based on the given query. | |
template<typename Record , typename... InputParameters> | |
std::vector< Record > | Query (std::string_view sqlQueryString, InputParameters &&... inputParameters) |
Queries multiple records from the database, based on the given query. | |
template<typename ElementMask , typename Record , typename... InputParameters> | |
std::vector< Record > | Query (SqlSelectQueryBuilder::ComposedQuery const &selectQuery, InputParameters &&... inputParameters) |
template<typename Record > | |
SqlAllFieldsQueryBuilder< Record > | Query () |
template<typename Record , auto... ReferencedFields> | |
SqlSparseFieldQueryBuilder< Record, ReferencedFields... > | QuerySparse () |
template<typename Record > | |
bool | IsModified (Record const &record) const noexcept |
Checks if the record has any modified fields. | |
template<typename Record > | |
void | Update (Record &record) |
Updates the record in the database. | |
template<typename Record > | |
std::size_t | Delete (Record const &record) |
Deletes the record from the database. | |
template<typename Record > | |
std::size_t | Count () |
Counts the total number of records in the database for the given record type. | |
template<typename Record > | |
std::vector< Record > | All () |
Loads all records from the database for the given record type. | |
template<typename Record > | |
auto | BuildQuery () -> SqlQueryBuilder |
Constructs an SQL query builder for the given record type. | |
SqlQueryBuilder | FromTable (std::string_view tableName) |
Constructs an SQL query builder for the given table name. | |
template<typename Record > | |
void | ClearModifiedState (Record &record) noexcept |
Clears the modified state of the record. | |
template<typename Record > | |
void | LoadRelations (Record &record) |
Loads all direct relations to this record. | |
template<typename Record > | |
void | ConfigureRelationAutoLoading (Record &record) |
template<typename Record > | |
size_t | Count () |
template<typename Record , typename... InputParameters> | |
LIGHTWEIGHT_FORCE_INLINE std::vector< Record > | Query (SqlSelectQueryBuilder::ComposedQuery const &selectQuery, InputParameters &&... inputParameters) |
template<typename Record , typename ValueType > | |
LIGHTWEIGHT_FORCE_INLINE void | SetId (Record &record, ValueType &&id) |
template<typename Record > | |
LIGHTWEIGHT_FORCE_INLINE Record & | BindOutputColumns (Record &record) |
template<typename ElementMask , typename Record > | |
LIGHTWEIGHT_FORCE_INLINE Record & | BindOutputColumns (Record &record) |
Static Public Member Functions | |
template<typename Record > | |
static std::string | Inspect (Record const &record) |
Constructs a human readable string representation of the given record. | |
Main API for mapping records to and from the database using high level C++ syntax.
A DataMapper instances operates on a single SQL connection and provides methods to create, read, update and delete records in the database.
Definition at line 439 of file DataMapper.hpp.
|
inline |
Constructs a new data mapper, using the default connection.
Definition at line 443 of file DataMapper.hpp.
|
inlineexplicit |
Constructs a new data mapper, using the given connection.
Definition at line 450 of file DataMapper.hpp.
|
inlineexplicit |
Constructs a new data mapper, using the given connection string.
Definition at line 457 of file DataMapper.hpp.
|
inlinenoexcept |
Returns the connection reference used by this data mapper.
Definition at line 470 of file DataMapper.hpp.
|
inlinenoexcept |
Returns the mutable connection reference used by this data mapper.
Definition at line 476 of file DataMapper.hpp.
|
static |
Constructs a human readable string representation of the given record.
Definition at line 753 of file DataMapper.hpp.
std::vector< std::string > DataMapper::CreateTableString | ( | SqlServerType | serverType | ) |
Constructs a string list of SQL queries to create the table for the given record type.
Definition at line 772 of file DataMapper.hpp.
References SqlMigrationQueryBuilder::CreateTable(), SqlQueryFormatter::Get(), SqlQueryBuilder::Migration(), and SqlForeignKeyReferenceDefinition::tableName.
std::vector< std::string > DataMapper::CreateTablesString | ( | SqlServerType | serverType | ) |
Constructs a string list of SQL queries to create the tables for the given record types.
Definition at line 821 of file DataMapper.hpp.
void DataMapper::CreateTable | ( | ) |
Creates the table for the given record type.
Definition at line 833 of file DataMapper.hpp.
References SqlStatement::ExecuteDirect(), and SqlConnection::ServerType().
void DataMapper::CreateTables | ( | ) |
Creates the tables for the given record types.
Definition at line 843 of file DataMapper.hpp.
RecordPrimaryKeyType< Record > DataMapper::Create | ( | Record & | record | ) |
Creates a new record in the database.
The record is inserted into the database and the primary key is set on this record.
Definition at line 892 of file DataMapper.hpp.
References ClearModifiedState(), ConfigureRelationAutoLoading(), SqlGuid::Create(), CreateExplicit(), GetPrimaryKeyField(), and SqlStatement::LastInsertId().
RecordPrimaryKeyType< Record > DataMapper::CreateExplicit | ( | Record const & | record | ) |
Creates a new record in the database.
Definition at line 850 of file DataMapper.hpp.
References SqlStatement::Execute(), SqlQueryBuilder::Insert(), SqlStatement::LastInsertId(), SqlStatement::Prepare(), and SqlConnection::Query().
Referenced by Create().
std::optional< Record > DataMapper::QuerySingle | ( | SqlSelectQueryBuilder | selectQuery, |
Args &&... | args | ||
) |
Queries a single record from the database based on the given query.
selectQuery | The SQL select query to execute. |
args | The input parameters for the query. |
Definition at line 1069 of file DataMapper.hpp.
References SqlStatement::CloseCursor(), ConfigureRelationAutoLoading(), SqlStatement::Execute(), SqlStatement::FetchRow(), SqlSelectQueryBuilder::Field(), SqlSelectQueryBuilder::First(), and SqlStatement::Prepare().
std::optional< Record > DataMapper::QuerySingle | ( | PrimaryKeyTypes &&... | primaryKeys | ) |
Queries a single record (based on primary key) from the database.
The primary key(s) are used to identify the record to load. If the record is not found, std::nullopt is returned.
Definition at line 1036 of file DataMapper.hpp.
References SqlStatement::CloseCursor(), ConfigureRelationAutoLoading(), SqlStatement::Execute(), SqlStatement::FetchRow(), SqlStatement::Prepare(), SqlConnection::Query(), and SqlQueryBuilder::Select().
|
inline |
Queries a single record from the database.
Definition at line 545 of file DataMapper.hpp.
std::optional< Record > DataMapper::QuerySingleBy | ( | ColumnName const & | columnName, |
T const & | value | ||
) |
Queries a single record by the given column name and value.
columnName | The name of the column to search. |
value | The value to search for. |
std::vector< Record > DataMapper::Query | ( | std::string_view | sqlQueryString, |
InputParameters &&... | inputParameters | ||
) |
Queries multiple records from the database, based on the given query.
Definition at line 1106 of file DataMapper.hpp.
References ConfigureRelationAutoLoading(), SqlStatement::Execute(), SqlStatement::FetchRow(), SqlStatement::GetColumn(), SqlStatement::NumColumnsAffected(), and SqlStatement::Prepare().
std::vector< Record > DataMapper::Query | ( | SqlSelectQueryBuilder::ComposedQuery const & | selectQuery, |
InputParameters &&... | inputParameters | ||
) |
Queries records from the database, based on the given query and can be used to retrieve only part of the record by specifying the ElementMask.
example:
Definition at line 1146 of file DataMapper.hpp.
References ConfigureRelationAutoLoading(), SqlStatement::Execute(), SqlStatement::FetchRow(), and SqlStatement::Prepare().
|
inline |
Queries records of given Record type.
Definition at line 617 of file DataMapper.hpp.
|
inline |
Queries select fields from the given Record type.
The fields are given in form of &Record::field1, &Record::field2, ...
Definition at line 646 of file DataMapper.hpp.
|
noexcept |
Checks if the record has any modified fields.
Definition at line 933 of file DataMapper.hpp.
void DataMapper::Update | ( | Record & | record | ) |
Updates the record in the database.
Definition at line 950 of file DataMapper.hpp.
References ClearModifiedState(), SqlStatement::Execute(), SqlStatement::Prepare(), SqlConnection::Query(), and SqlQueryBuilder::Update().
std::size_t DataMapper::Delete | ( | Record const & | record | ) |
Deletes the record from the database.
Definition at line 989 of file DataMapper.hpp.
References SqlQueryBuilder::Delete(), SqlStatement::Execute(), SqlStatement::NumRowsAffected(), SqlStatement::Prepare(), and SqlConnection::Query().
std::vector< Record > DataMapper::All | ( | ) |
Loads all records from the database for the given record type.
Definition at line 1030 of file DataMapper.hpp.
References SqlSelectQueryBuilder::All(), SqlConnection::Query(), and SqlQueryBuilder::Select().
|
inline |
Constructs an SQL query builder for the given record type.
Definition at line 686 of file DataMapper.hpp.
References SqlConnection::Query().
|
inline |
Constructs an SQL query builder for the given table name.
Definition at line 692 of file DataMapper.hpp.
References SqlConnection::Query().
|
noexcept |
Clears the modified state of the record.
Definition at line 1164 of file DataMapper.hpp.
void DataMapper::LoadRelations | ( | Record & | record | ) |
Loads all direct relations to this record.
Definition at line 1399 of file DataMapper.hpp.
void DataMapper::ConfigureRelationAutoLoading | ( | Record & | record | ) |
Configures the auto loading of relations for the given record.
This means, that no explicit loading of relations is required. The relations are automatically loaded when accessed.
Definition at line 1485 of file DataMapper.hpp.
References SqlSelectQueryBuilder::All(), SqlStatement::CloseCursor(), ConfigureRelationAutoLoading(), SqlSelectQueryBuilder::Count(), SqlStatement::Execute(), SqlStatement::FetchRow(), SqlStatement::GetColumn(), SqlStatement::Prepare(), HasOneThrough< OtherTable, ThroughTable >::SetAutoLoader(), HasMany< OtherRecord >::SetAutoLoader(), and HasManyThrough< ReferencedRecordT, ThroughRecordT >::SetAutoLoader().
Referenced by ConfigureRelationAutoLoading(), Create(), Query(), Query(), QuerySingle(), and QuerySingle().
size_t DataMapper::Count | ( | ) |
Definition at line 1017 of file DataMapper.hpp.
|
inline |
Definition at line 1096 of file DataMapper.hpp.
|
inline |
Definition at line 1425 of file DataMapper.hpp.
|
inline |
Definition at line 1442 of file DataMapper.hpp.
|
inline |
Definition at line 1456 of file DataMapper.hpp.