I am using Matlab and its 'datasets', and R and its 'dataframes'.
I am thinking of using Python but I need an equivalent data-storing format. Extension 'Pandas' for Python has a class called dataframe which is similar.
Now I would like to be able to send a query to a SQL Server and store the result of that query in a Panda Dataframe
e.g.: newDataFrame = GetDataFrameFromSQLServer('SELECT * from schema.table',sqlConnection)
I had the impression that Pandas only talks to SQLite. Is that the case?