Re: [sqlalchemy] Database agnostic datetime functions

2014-11-06 Thread Michael Bayer
> On Nov 6, 2014, at 12:00 PM, Matthew Rocklin wrote: > > What is the status of database agnostic datetime access functions like "day > of month" or "day or year”? rudimental fields of a date are available on supported databases (meaning, not SQLite) via EXTRACT: http://docs.sqlalchemy.org/e

[sqlalchemy] Database agnostic datetime functions

2014-11-06 Thread Matthew Rocklin
What is the status of database agnostic datetime access functions like "day of month" or "day or year"? Are these implemented somewhere? If not are they planned? If not are they in scope? I'm specifically looking for a database-agnostic solution, not a solution for a particular database. Best, -