(c *cli.Context)
| 95 | } |
| 96 | |
| 97 | func tableList(c *cli.Context) []string { |
| 98 | z := c.String("tables") |
| 99 | if z != "" { |
| 100 | return strings.Split(z, ",") |
| 101 | } |
| 102 | return []string{} |
| 103 | } |
| 104 | |
| 105 | func cxdie(c *cli.Context, err error) { |
| 106 | fmt.Fprintf(os.Stderr, "Failed to connect to %s (type %s): %s", conn(c), driver(c), err) |