Type Alias sqlx::AnyPool

source ·
pub type AnyPool = Pool<Any>;
Expand description

SEE DOCUMENTATION BEFORE USE. Type alias for Pool<Any>.

The underlying database drivers are chosen at runtime from the list set via install_drivers. Any use of AnyConnection or AnyPool without this will panic.

It is recommended to use install_default_drivers to activate all currently compiled-in drivers.

Aliased Type§

struct AnyPool(/* private fields */);