0

マッパーを次のように定義します。

col = Column(Date).

データをオラクルに保存するとき、datetime.datetime.now() を col の値として使用すると、

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

このフィールドに日付情報のみを格納する必要がありますが、その方法がわかりません。datetime をフィールドに格納する方法にも興味があります。

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 に答える