Macro database_pool

Source
macro_rules! database_pool {
    (sqlite) => { ... };
    (mysql) => { ... };
    (postgresql) => { ... };
}
Expand description

Returns the appropriate database pool type based on the database type.