arrow_cli is a CLI tool for interacting with server in Flight SQL protocol.
sh
cargo install arrow_cli
```
arrowcli --help Usage: arrowcli <--user
|--password |--host |--port > ```
```sql ⯠arrow_cli -h arch -u sundy -p abc --port 8900 Welcome to Arrow CLI. Connecting to http://arch:8900/ as user sundy.
arch :) select avg(number) from numbers(10);
select avg(number) from numbers(10);
+-------------+ | avg(number) | +-------------+ | 4.5 | +-------------+
1 rows in set (0.036 sec)
arch :) show tables like 'c%';
show tables like 'c%';
+-------------------+ | tablesindefault | +-------------------+ | customer | +-------------------+
1 rows in set (0.030 sec)
arch :) exit Bye ```
bash
⯠echo "select number from numbers(3)" | arrow_cli -h arch -u sundy -p abc --port 8900
0
1
2
Licensed under Apache License, Version 2.0.