connector-x icon indicating copy to clipboard operation
connector-x copied to clipboard

Fastest library to load data from DB to DataFrames in Rust and Python

Results 232 connector-x issues
Sort by recently updated
recently updated
newest added

how to add progressbar when use cx.read_sql? need show the speed of process.

This would be hugely useful - in our case we always know the result schema _before_ issuing a query. If we can pass that schema into the `read_sql` function, then...

Since redshift exports data more efficiently using simple protocol than extended protocol.

Since GAT is now stabilized. https://github.com/rust-lang/rust/pull/96709

Related to https://github.com/sfu-db/connector-x/issues/229, https://github.com/sfu-db/connector-x/issues/273

* Add bigquery support in arrow and arrow2 * Add tests for arrow and arrow2 in ci for each database

I've tried connecting to a mssql server like this: ```python import os os.environ['RUST_LOG']="connectorx=debug,connectorx_python=debug" import connectorx as cx url = "mssql://user_name:password@server_host:port/db_name" df = cx.read_sql(url, "select top 10 * from dbo.stupidtablename") ```...