Re: [sqlalchemy] Re: Translating sql query to sqlalchemy

2019-08-18 Thread Cameron Simpson
On 18Aug2019 19:36, Ira Fuchs wrote: Thanks for your reply and offer to help. I am able to create an Engine and connect to the MySQL db. I can execute simple sql queries although I wasn't able to get the query I posted to work due to a syntax error (probably having to do with the quotes). I have

[sqlalchemy] Re: Translating sql query to sqlalchemy

2019-08-18 Thread Ira Fuchs
Thanks for your reply and offer to help. I am able to create an Engine and connect to the MySQL db. I can execute simple sql queries although I wasn't able to get the query I posted to work due to a syntax error (probably having to do with the quotes). I have not mapped any tables to classes. O

[sqlalchemy] Re: Translating sql query to sqlalchemy

2019-08-18 Thread Peter Schutt
Hi Ira, I'd be happy to help you find your feet with the SQLAlchemy ORM. In general when creating an application that uses the SQLAlchemy ORM, you would start with an Engine (for connecting to the db), a declarative base class (maps db table to python class) and a Session instance (for using a

[sqlalchemy] Re: Regarding Data type consideration

2019-08-18 Thread Andrew Martin
Hi Mohan, Could you give us some more information about the structure of your Dataframe and how you are using SqlAlchemy? On Sunday, August 18, 2019 at 4:24:09 AM UTC-5, Mohan Raj wrote: > > Hi, > > I used "sqlalchemy" in my python code for inserting a Dataframe from > Pandas(0.25.0) to Microso

[sqlalchemy] Translating sql query to sqlalchemy

2019-08-18 Thread Ira Fuchs
I am new to sqlalchemy and I would like to begin using it to create scripts with some sql queries that I have been using but need to change from time to time. It would help a lot if someone could translate one of these queries to python sqlalchemy using an ORM (not simply executing the query as

Re: [sqlalchemy] Regarding Data type consideration

2019-08-18 Thread waleed saud
I think Mohan means the header row like CSV which indicate the column name and when he say the second row he means the the row that the real data start which is the second row . correct me here Mohan if I am wrong ? https://pandas.pydata.org/pandas-docs/stable/reference/api/pandas.DataFrame.ht

Re: [sqlalchemy] Regarding Data type consideration

2019-08-18 Thread Mike Bayer
I've reached out on Twitter to see if I can attract more Pandas users to this list as this is a pandas-specific issue for which I don't have the expertise to answer. On Sun, Aug 18, 2019, at 5:24 AM, Mohan Raj wrote: > Hi, > > I used "sqlalchemy" in my python code for inserting a Dataframe fro

[sqlalchemy] Regarding Data type consideration

2019-08-18 Thread Mohan Raj
Hi, I used "sqlalchemy" in my python code for inserting a Dataframe from Pandas(0.25.0) to Microsoft SQL Server 2014. While inserting the data, all the columns are considered as varchar type, instead there are integer values in the column. I need to consider the data type based on second row o