在使用python&cx_Oracle处理日期时,我遇到了下一个问题。在
这个很好:In [29]: cursor.execute("SELECT TO_DATE('23.09.2015','DD.MM.YYYY') FROM dual")
Out[29]: >
In [30]: cursor.fetchone()
Out[30]: (datetime.datetime(2015, 9, 23, 0, 0),)
这也很好:
^{pr2}$
但是当我使用带有日期字段的oracle to_date函数时,cx}oracle将年份值减为2位数,所以我得到的不是2015,而是{}。示例如下:In [31]: cursor.execute("SELECT TO_DATE(TO_DATE('23.09.2015','DD.MM.YYYY'),'DD.MM.YYYY') FROM dual")
Out[31]: >
In [32]: cursor.fetchone()
Out[32]: (datetime.datetime(15, 9, 23, 0, 0),)
在这里:In [36]: cursor.execute("SELECT TO_DATE(sysdate,'DD.MM.YYYY') FROM dual")
Out[36]: >
In [37]: cursor.fetchone()
Out[37]: (datetime.datetime(15, 9, 23, 0, 0),)
oracle中还有一个trunc函数,可用于日期舍入,并且不会引发问题:In [39]: cursor.execute("SELECT TRUNC(sysdate) FROM dual")
Out[39]: >
In [40]: cursor.fetchone()
Out[40]: (datetime.datetime(2015, 9, 23, 0, 0),)
但是我认为我的工具可以处理用户定义的DB对象(包括视图),而不需要任何特定的限制。不幸的是,这个问题不能让我正确地处理日期,目前我找不到任何合适的解决方案。在
编辑。Rajesh的asnwer之后的工作示例:In [104]: cursor.execute("ALTER SESSION SET NLS_DATE_FORMAT='DD.MM.YYYY'")
In [105]: cursor.execute("SELECT TO_DATE(sysdate,'DD.MM.YYYY') FROM dual")
Out[105]: >
In [106]: cursor.fetchone()
Out[106]: (datetime.datetime(2015, 9, 23, 0, 0),)