-
Notifications
You must be signed in to change notification settings - Fork 90
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Polars SQL datasets #853
Comments
Would the ibis dataset already support polar as a backend? |
It does, but:
It's a separate question whether Polars is the best way to manipulate data in a database (definite downside is pulling it into memit. For manipulation, rather than pushing down compute), but a user may still want to do it. |
I would recommend to create
|
Make sense, @AntonNikishin is this something you would like to work on? |
@noklam I am happy to work on this if it is still open. |
Description
It would be great to have Polars implementations of SQLQueryDataset and SQLTableDataset, similar to the Pandas versions: pandas.SQLTableDataset and pandas.SQLQueryDataset.
Context
Sometimes users would like to read / write polars DataFrames directly from SQL databases.
Possible Implementation
The datasets will have similar implementation to Pandas versions, but will use polars built-in functions read_database and write_database.
P.S. I'm happy to work on that☺️
The text was updated successfully, but these errors were encountered: