Re: [sqlalchemy] Common datetime call

2021-06-18 Thread Joseph L. Casale
On Fri, Jun 18, 2021 at 3:45 AM Simon King wrote: > On Fri, Jun 18, 2021 at 12:21 AM jca...@gmail.com > wrote: > > > > Hi, > > Does a means exist to generically call a local datetime func such that > it renders as SYSDATE in Oracle and GETDATE() in SQL Server? > > > > Thanks, > > jlc > > > > Do

Re: [sqlalchemy] Common datetime call

2021-06-18 Thread Simon King
On Fri, Jun 18, 2021 at 12:21 AM jca...@gmail.com wrote: > > Hi, > Does a means exist to generically call a local datetime func such that it > renders as SYSDATE in Oracle and GETDATE() in SQL Server? > > Thanks, > jlc > Do you need those functions explicitly? I think both databases support the

[sqlalchemy] Common datetime call

2021-06-17 Thread jca...@gmail.com
Hi, Does a means exist to generically call a local datetime func such that it renders as SYSDATE in Oracle and GETDATE() in SQL Server? Thanks, jlc -- SQLAlchemy - The Python SQL Toolkit and Object Relational Mapper http://www.sqlalchemy.org/ To post example code, please provide an MCVE: