0

我这样定义我的映射器:

col = Column(Date).

当我将数据保存到 oracle 时,我使用 datetime.datetime.now() 作为 col 的值,它会提高

NotSupportedError: (NotSupportedError) Variable_TypeByValue(): unhandled data
type time.struct_time

我只需要将日期信息存储到此字段中,但我不知道该怎么做。我也很好奇如何将日期时间存储到字段中。

evn:python 2.7.3、sqlalchemy0.8.0b2、cx_Oracle 5.1.2

4

1 回答 1

0

对于不同的数据类型,我也面临同样的问题,并找到这个解决方案它也可以帮助你。

https://groups.google.com/forum/#!topic/modwsgi/SdgEyyAPwvE

示例: Apache 配置

<VirtualHost *:80>
    ServerName testenv-test.my.fq.dn
    ServerAlias testenv-test

    WSGIDaemonProcess testenv user=michel threads=5
    WSGIScriptAlias / /var/www/michel/testenv/wsgi/app.wsgi
    SetEnv MYAPP_PATH /var/www/michel/testenv/config

    <Directory /var/www/michel/testenv/wsgi>
        WSGIProcessGroup testenv
        WSGIApplicationGroup %{GLOBAL}
        Order deny,allow
        Allow from all
    </Directory>

    ErrorLog /var/www/michel/testenv/logs/error.log
    LogLevel warn

    CustomLog /var/www/michel/testenv/logs/access.log combined

</VirtualHost>
于 2015-06-05T07:20:56.277 回答