使用 Oracle DB 在 SqlAlchemy 中关闭自动转换为十进制

发布于 2025-01-02 21:36:00 字数 581 浏览 0 评论 0原文

在查询 Oracle 数据库时,如何告诉 SqlAlchemy 将 Oracle Number 字段转换为 Decimal?

我正在尝试用 SqlAlchemy 替换一堆包含手动 sql 语句的代码。许多查询都会从数据库中获取 500 列数字。 SQL alchemy 版本使用其池化连接,速度慢了 10 倍,几乎可以肯定是因为转换为十进制。

>>> engine = sqlalchemy.create_engine("oracle+cx_oracle://"+connString)
>>> conn = engine.pool.connect()
>>> cursor = conn.cursor()
>>> cursor.execute("""SELECT * FROM MY_TABLE""")
>>> r = cursor.fetchone()
>>> r[-1]
Decimal('0.878935370620606')

如何告诉方言不要转换为十进制? (旧代码不使用十进制,因此精度损失并不重要。减速因素 10 才是。)

How do I tell SqlAlchemy not to convert Oracle Number fields to Decimal when querying an Oracle database?

I'm trying to replace a bunch of code containing hand-rolled sql-statements, with SqlAlchemy. A lot of the queries deal get 500 columns of Numbers from the database. The SQL alchemy version, using their pooled connection, is 10 times slower, almost certainly because of the conversion to Decimal.

>>> engine = sqlalchemy.create_engine("oracle+cx_oracle://"+connString)
>>> conn = engine.pool.connect()
>>> cursor = conn.cursor()
>>> cursor.execute("""SELECT * FROM MY_TABLE""")
>>> r = cursor.fetchone()
>>> r[-1]
Decimal('0.878935370620606')

How do I tell the dialect not to make the conversion to Decimal? (The old code doesn't use decimal, so the loss in precision isn't important. The factor of 10 slowdown is.)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

奢望 2025-01-09 21:36:00

我还在 SqlAlchemy 列表上提出了这个问题,并得到了好的答案。没办法,但开发商很快就加了一个。此外,他建议使用 cDecimal python 库作为更快的直接替代品标准库十进制模块。

I also asked this on the SqlAlchemy list, and got a good answer. There was no way, but the developer added one quickly. Also, he suggested using the cDecimal python library as a much faster, drop-in replacement for the standard library decimal module.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文