odbc DbiDate date conversion

Frank Millman frank at chagford.com
Tue Sep 26 09:51:28 EDT 2006


flupke wrote:
> I'm using a solid DB and i'm accessing it via the odbc module
> (activepython).
> I get a DbiDate object returned but i don't find a way to decently print
> it or get a format like %d/%m%/%y.
>

I convert it to a datetime() instance, like this -

    mydate = datetime.datetime.fromtimestamp(int(dbidate))

Then I can use all the functionality of the datetime module.

HTH

Frank Millman




More information about the Python-list mailing list