err!("`DATABASE_URL` is a PostgreSQL URL, but the 'postgresql' feature is not enabled")
#[cfg(postgresql)]
returnOk(DbConnType::postgresql);
//Sqlite
#[cfg(not(postgresql))]
err!("`DATABASE_URL` is a PostgreSQL URL, but the 'postgresql' feature is not enabled")
// Failed to parse
}else{
err!("`DATABASE_URL` looks like a URI but it could not be parsed, make sure it is valid. Note that ':' in filepaths are disallowed and DATABASE_URL only accepts 'postgresql://', 'postgres://' and 'mysql://' as valid URIs")