This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author brandon
Recipients brandon
Date 2014-05-24.13:55:12
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1400939714.27.0.921682878277.issue21570@psf.upfronthosting.co.za>
In-reply-to
Content
Observe the following code:

import MySQLdb, MySQLdb.cursors, datetime
""" ... mysqlCursor is a cursor object from a connection to database from the MySQLdb module ... """
mysqlCursor.execute("SELECT NOW()")
timeRow = mysqlCursor.fetchall()
currentDateTime = datetime.datetime.strptime(timeRow[0]["NOW()"], "%Y-%m-%d %H:%M:%S")

I get the following error:

TypeError: must be string, not datetime.datetime

HOWEVER, when I cast timeRow[0]["NOW()"] to a string like: str(timeRow[0]["NOW()"]) , it works fine.

For whatever reason the Python interpreter seems to interpret the string from the row of the MySQLdb cursor result as a datetime.datetime object. I have no explanation for this, besides it looking like a date time in the format of YYYY-mm-dd HH:MM:SS. 

I have not tried this in Python 3.x, but the bug is in the latest compile of version 2.7.6 from the FTP distribution site.
History
Date User Action Args
2014-05-24 13:55:14brandonsetrecipients: + brandon
2014-05-24 13:55:14brandonsetmessageid: <1400939714.27.0.921682878277.issue21570@psf.upfronthosting.co.za>
2014-05-24 13:55:14brandonlinkissue21570 messages
2014-05-24 13:55:12brandoncreate