gpt4 book ai didi

python - 在 SQLAlchemy 中使用 cdecimal

转载 作者:太空宇宙 更新时间:2023-11-03 13:22:47 33 4
gpt4 key购买 nike

所以我尝试使用 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 上试了一下。

关于python - 在 SQLAlchemy 中使用 cdecimal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8707278/

33 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com