pub fn execute_select(
query: SelectQuery,
db: &Database,
) -> Result<(String, usize)>Expand description
Executes a SELECT and returns (rendered_table, row_count). The
REPL and Tauri app use this to keep the table-printing behaviour
the engine has always shipped. Structured callers use
execute_select_rows instead.