python – 在SQLAlchemy中使用cdecimal

所以我试图使用cdecimal在我的数据库中存储货币值. SQLAlchemy Doc

import sys
import cdecimal
sys.modules["decimal"] = cdecimal

我连接了我的Postgresql数据库,如下所示:

sqlalchemy.url = postgresql+psycopg2://user:password@host:port/dbname

我已经设置了这样的模型:

class Exchange(Base):
    amount = Column(Numeric)
    ...

    def __init__(self,amount):
        self.amount = cdecimal.Decimal(amount)

但是,每当我这样做时,我都会收到以下错误

ProgrammingError: (ProgrammingError) can't adapt type 'cdecimal.Decimal' 'INSERT INTO...

我究竟做错了什么?

解决方法

这个适合我,请试试这个

import sys 
import cdecimal
sys.modules["decimal"] = cdecimal

from sqlalchemy import create_engine,Numeric,Integer,Column
from sqlalchemy.ext.declarative import declarative_base

engine = create_engine('MysqL://test:test@localhost/test1')
Base = declarative_base()


class Exchange(Base):
    __tablename__ = 'exchange'
    id = Column(Integer,primary_key=True)
    amount = Column(Numeric(10,2))

    def __init__(self,amount):
        self.amount = cdecimal.Decimal(amount)


Base.Metadata.create_all(engine)
from sqlalchemy.orm import sessionmaker
Session = sessionmaker(bind=engine)
session = Session()


x = Exchange(10.5)
session.add(x)
session.commit()

注意:我的电脑里没有pgsql,所以我尝试了MysqL.

相关文章

功能概要:(目前已实现功能)公共展示部分:1.网站首页展示...
大体上把Python中的数据类型分为如下几类: Number(数字) ...
开发之前第一步,就是构造整个的项目结构。这就好比作一幅画...
源码编译方式安装Apache首先下载Apache源码压缩包,地址为ht...
前面说完了此项目的创建及数据模型设计的过程。如果未看过,...
python中常用的写爬虫的库有urllib2、requests,对于大多数比...