SQLAlchemy:从SQLite迁移到PostgreSQL的问题(例如sqlalchemy.exc.ProgrammingError :)

时间:2012-06-23 19:10:11

标签: postgresql sqlalchemy

我无法将工作脚本从SQLite迁移到PGSQL。我正在使用SQLalchemy。当我运行脚本时,它会引发以下错误:

raise exc.DBAPIError.instance(statement, parameters, e, connection_invalidated=is_disconnect)

sqlalchemy.exc.ProgrammingError: (ProgrammingError) can't adapt 'INSERT INTO cnn_hot_stocks (datetime, list, ticker, price, change, "pctChange") VALUES (%(datetime)s, %(list)s, %(ticker)s, %(price)s, %(change)s, %(pctChange)s)' {'price': Decimal('7.94'), 'list': 'active', 'datetime': datetime.datetime(2012, 6, 23, 11, 45, 1, 544361), 'pctChange': u'+1.53%', 'ticker': u'BAC', 'change': Decimal('0.12')}

使用sqlite引擎时插入调用很有效,但我想使用pgsql来利用本机Decimal类型来保持财务数据的正确性。我复制了脚本,只是将db引擎更改为postgresql服务器。关于如何解决这个错误的任何建议将非常感谢这个SQLalchemy新手......我想我在这个上面是一条小溪!提前谢谢!

以下是我的相关代码段和表格说明:

dbstring = "postgresql://postgres:postgres@localhost:5432/algo"
db = create_engine(dbstring)
db.echo = True  # Try changing this to True and see what happens
metadata = MetaData(db)

cnn_hot_stocks = Table('cnn_hot_stocks', metadata, autoload=True)

i = cnn_hot_stocks.insert() # running log from cnn hot stocks web-site

def scrape_data():
    try:
            html = urllib2.urlopen('http://money.cnn.com/data/hotstocks/').read()
            markup, errors = tidy_document(html)
            soup = BeautifulSoup(markup,)
    except Exception as e:
            pass
    list_map = { 2 : 'active',
                 3 : 'gainer',
                 4 : 'loser'
               }
    # Iterate over 3 tables on CNN hot stock web-site
    for x in range(2, 5):
            table = soup('table')[x]
            for row in table.findAll('tr')[1:]:
                    timestamp = datetime.now()
                    col = row.findAll('td')
                    ticker = col[0].a.string
                    price = Decimal(col[1].span.string)
                    change = Decimal(col[2].span.span.string)
                    pctChange = col[3].span.span.string
                    log_data = {'datetime'  : timestamp,
                                'list'      : list_map[x],
                                'ticker'    : ticker,
                                'price'     : price,
                                'change'    : change,
                                'pctChange' : pctChange
                               }
                    print log_data
                    # Commit to DB
                    i.execute(log_data)

TABLE:

cnn_hot_stocks = Table('cnn_hot_stocks', metadata, # log of stocks data on cnn hot stocks lists
            Column('datetime', DateTime, primary_key=True),
            Column('list', String), # loser/gainer/active
            Column('ticker', String),
            Column('price', Numeric),
            Column('change', Numeric),
            Column('pctChange', String),
            )

1 个答案:

答案 0 :(得分:0)

我对文档的阅读是您必须使用numeric代替decimal.

PostgreSQL没有名为decimal的类型(它是数字的别名,但不是一个非常全功能的),而SQL Alchemy似乎期望numeric作为它可用于抽象目的的类型。