arrow_cli   ![Build Status] ![Latest Version]

Overview

arrow_cli is a CLI tool for interacting with server in Flight SQL protocol.

Install

sh cargo install arrow_cli

Usage

```

arrowcli --help Usage: arrowcli <--user |--password |--host |--port > ```

Examples

REPL

```sql ❯ arrowcli -h arch -u sundy -p abc --port 8900 arrowcli :) select avg(number) from numbers(10);

select avg(number) from numbers(10);

+-------------+ | avg(number) | +-------------+ | 4.5 | +-------------+ arrow_cli :) show tables like 'c%';

show tables like 'c%';

+-------------------+ | tablesindefault | +-------------------+ | customer | +-------------------+ arrow_cli :) ```

StdIn Pipe

bash ❯ echo "select number from numbers(3)" | arrow_cli -h arch -u sundy -p abc --port 8900 0 1 2

Features

License

Licensed under Apache License, Version 2.0.