Configuration type aliases
This is the collection of configuration type aliases within the persisters
module. There are 6 configuration type aliases in total.
DatabasePersisterConfig
The DatabasePersisterConfig
type describes the configuration of a database-oriented Persister
, such as those for SQLite and PostgreSQL.
DpcJson
The DpcJson
type describes the configuration of a database-oriented Persister
operating in serialized JSON mode.
DpcTabular
The DpcTabular
type describes the configuration of a database-oriented Persister
that is operating in tabular mapping mode.
DpcTabularLoad
The DpcTabularLoad
type describes the configuration for loading Tables
in a database-oriented Persister
that is operating in tabular mode.
DpcTabularSave
The DpcTabularSave
type describes the configuration for saving Tables
in a database-oriented Persister
that is operating in tabular mode.
DpcTabularValues
The DpcTabularValues
type describes the configuration for handling Values
in a database-oriented Persister
that is operating in tabular mode.