pub async fn execute_remote_with_formatter<'a, W: Write>(
client: &HttpClient,
cmd: &SqlCommand,
batch_mode: &BatchMode,
ui_mode: UiMode,
writer: &mut W,
formatter: Box<dyn Formatter>,
admin_launcher: Option<Box<dyn FnMut() -> Result<()> + 'a>>,
limit: Option<usize>,
quiet: bool,
) -> Result<()>Expand description
Execute a SQL command against a remote server using HttpClient.