python-pandas and databases like mysql

后端 未结 13 2142
有刺的猬
有刺的猬 2020-12-02 03:51

The documentation for Pandas has numerous examples of best practices for working with data stored in various formats.

However, I am unable to find any good examples

13条回答
  •  感情败类
    2020-12-02 04:25

    For Sybase the following works (with http://python-sybase.sourceforge.net)

    import pandas.io.sql as psql
    import Sybase
    
    df = psql.frame_query("", con=Sybase.connect("", "", ""))
    

提交回复
热议问题