Re: pymysql question

2016-02-18 Thread MRAB
On 2016-02-18 12:08, tdspe...@gmail.com wrote: Hi All I have many mysql tables in a conversion I am doing - the table field names are a mixture of lower case and upper case - do I have to covert all to one case to over come Python not finding the field. rows ocur.fetchall() for row in rows:

pymysql question

2016-02-18 Thread tdsperth
Hi All I have many mysql tables in a conversion I am doing - the table field names are a mixture of lower case and upper case - do I have to covert all to one case to over come Python not finding the field. rows ocur.fetchall() for row in rows: print(row['newname']) #which fails becaus