在 HQL 中转换为十进制(38,12)

发布于 2024-11-03 05:56:53 字数 396 浏览 0 评论 0原文

我正在将 NHibernate 与 Active Record 结合使用,并尝试对列求和并返回结果。该列是十进制的(38,12)。然而,当我这样做时,我得到 SQL 异常:

“将数字转换为数据类型数字时出现算术溢出错误”

我运行了探查器,可以看到问题是生成的 SQL 查询正在使用十进制(19,5)。

关于如何解决这个问题有什么想法吗?我在下面列出了我的 HQL 的一部分:

select new MyObject(
                        cast(sum(abs(oo.Total)) as decimal)
                        )
                        from OtherObject oo

I'm using NHibernate with Active Record and I'm trying to sum up a column and return the result. The column is a decimal(38,12). However when I do this I get the SQL Exception:

"Arithmetic overflow error converting numeric to data type numeric"

I've ran the profiler and can see the problem is that the SQL query being generated is using decimal(19,5).

Any thoughts on how to get round this? I've included part of my HQL below:

select new MyObject(
                        cast(sum(abs(oo.Total)) as decimal)
                        )
                        from OtherObject oo

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文