New Features
- Added
map_sqlx_mysql_opts
,map_sqlx_postgres_opts
,map_sqlx_sqlite_opts
toConnectOptions
#2731
let mut opt = ConnectOptions::new(url);
opt.map_sqlx_postgres_opts(|pg_opt: PgConnectOptions| {
pg_opt.ssl_mode(PgSslMode::Require)
});