Open
Description
I was playing around with the DataFrame library to start to build a SQL reconciliation tool, and I noticed that there is no easy way to go from SQL query to DataFrame.
I have some code for that can create the DataFrame from a SqlDataReader
, but we may want an easier to use API than that.
One idea is to follow the convention used for the LoadCsv
function and make something similar to the pandas function read_sql.
I am happy to put a PR together depending on the approach chosen.