Hi all,
I'm using Python 2.6.5 and SQLAlchemy-0.7.8 over sqlite3 to store and
retrieve logs with in table like this :
class LogEntry(Base):
"""Log class"""
__tablename__ = 'log'
#common data
id = Column(Integer, primary_key=True)
timestamp = Column(DateTime())
When querying back object, how comes I get unicode string in timestamp
attribute ? Isn't SA supposed to convert ISO formatted string stored in
sqlite back to python datetime object ?
--
You received this message because you are subscribed to the Google Groups
"sqlalchemy" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/sqlalchemy?hl=en.