nu_plugin_connectorx 0.1.0

Load data from DBs in `nushell` using ConnectorX
nu_plugin_connectorx-0.1.0 is not a library.

nu_plugin_connectorx

| crates.io |

[!WARNING] This tool might be rough around the edges, it is not widely tested.

Installation

cargo install nu_plugin_connectorx

Example Usage

> [[a b c]; [1 2 3] [4 5 6]] | into sqlite test.db
> cx $'sqlite://("./test.db" | path expand)' -q 'select * from main'
╭───┬───┬───┬───╮
│ # │ a │ b │ c │
├───┼───┼───┼───┤
│ 0 │ 1 │ 2 │ 3 │
│ 1 │ 4 │ 5 │ 6 │
╰───┴───┴───┴───╯