| Name | Type | Description |
|---|---|---|
namespace* | str | The namespace associated with this record manager. |
engine | Optional[Union[Engine, AsyncEngine]] | Default: NoneAn already existing SQL Alchemy engine. Default is None. |
db_url | Union[None, str, URL] | Default: None |
engine_kwargs | Optional[Dict[str, Any]] | Default: None |
async_mode | bool | Default: False |
A SQL Alchemy based implementation of the record manager.
A database connection string used to create an SQL Alchemy engine. Default is None.
Additional keyword arguments to be passed when creating the engine. Default is an empty dictionary.
Whether to create an async engine. Driver should support async operations. It only applies if db_url is provided. Default is False.