Future<void> dumpTable(String table) async { final r = await execute("SELECT * FROM ${table.escapeSQL}"); r.dump(); }