bestool-psql 1.7.2

psql-inspired client for PostgreSQL
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use std::ops::ControlFlow;

pub fn handle_copy() -> ControlFlow<()> {
	eprintln!(r"The \copy command is not supported.");
	eprintln!(r"Instead, use \gz to execute a query without displaying output,");
	eprintln!(r"then use \re show to=path to export the result.");
	eprintln!();
	eprintln!(r"Example:");
	eprintln!(r"  SELECT * FROM users \gz");
	eprintln!(r"  \re show to=users.csv");
	ControlFlow::Continue(())
}