arrow-cli
스타13
포크3
업데이트2026년 7월 16일 08:47
Use `arrow_cli` to connect to a Flight SQL server and run SQL.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SKILL.md
readonly메뉴
Use `arrow_cli` to connect to a Flight SQL server and run SQL.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
| name | arrow-cli |
| description | Use `arrow_cli` to connect to a Flight SQL server and run SQL. |
arrow_cli is a command-line client for connecting to a Flight SQL server and executing SQL queries.
cargo install arrow_cli
After installation, confirm that the binary is available:
arrow_cli --version
arrow_cli --host localhost --port 8900 --user admin --password abc --command "select 1"
Output:
+----------+
| Int64(1) |
+----------+
| 1 |
+----------+
1 rows in set (tickets received in 0.008 sec, rows received in 0.012 sec)
arrow_cli --host localhost --port 8900 --user admin --password abc --file query.sql
The file content is read as a single SQL statement and executed once, then the CLI exits.
echo "select 1" | arrow_cli --host localhost --port 8900 --user admin --password abc
arrow_cli --host localhost --port 8900 --user admin --password abc --print-schema --command "select 1"
Output:
+----------+
| Int64(1) |
+----------+
| 1 |
+----------+
Schema {
fields: [
Field {
name: "Int64(1)",
data_type: Int64,
},
],
metadata: {},
}
1 rows in set (tickets received in 0.008 sec, rows received in 0.010 sec)
--output table: pretty table output with row count and timing summary--output json: line-delimited JSON rows--output csv: comma-separated rows without headers--output tsv: tab-separated rows without headers--output psv: pipe-separated rows without headersRun arrow_cli --help for more usage details.