PHP oci select 在 Windows Apache 上返回舍入浮点数

发布于 2024-12-01 21:51:47 字数 356 浏览 0 评论 0原文

我在查询 Oracle 数据库时遇到一个奇怪的问题。我在完全相同的逻辑上得到了不同的结果,但在两个不同的 Windows Apache 设置上,据我所知,它们实际上是相同的版本和配置。

问题是,当我从表中选择 3 列( Number(10),Number(10),Number(10,4) )时,同一查询在一台机器上为第 3 列返回正确的小数,而在另一台机器上则删除小数,我只得到数字的整个部分。

我不知道哪些设置控制 Oracle 如何返回 Number(10,4) 数据类型,我没有看到两台计算机上的 Oracle 客户端、Apache 和 PHP 设置有任何差异。

造成这种情况的原因可能是什么?

谢谢,

伊利亚

I have a weird issue when querying Oracle database. I get different results on exactly the same logic but on two different Windows Apache setups, which are actually the same version and configuration as far as I know.

The issue is that when I select 3 columns ( Number(10),Number(10),Number(10,4) ) from a table the same query returns proper decimals on one machine for column #3 while on a different machine it removes the decimals and I get only the whole part of the number.

I have no idea what settings control how Oracle returns Number(10,4) data type, I don't see any differences in Oracle client, Apache, and PHP setups on the two machines.

What may be the cause of this?

Thanks ahead,

Ilya

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

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

发布评论

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

评论(1

似最初 2024-12-08 21:51:47

弄清楚了,我注意到在看起来像 php oci oracle 查询“省略”小数的机器上,它实际上是用逗号而不是句点分隔小数。它与显示数字的 NLS 设置有关。

NLS 设置有 3 个级别:DATABASEINSTANCESESSIONSESSION 具有最高优先级。因此,为了使数字以传统格式显示为 1,234.56,其中千位用逗号分隔,小数位用句点分隔,我们需要使用以下命令将 *NLS_NUMERIC_CHARACTERS* 设置为“.,”:

ALTER SESSION SET NLS_NUMERIC_CHARACTERS = '.,'

我在任何查询之前执行该命令,因此我所有的数字现在都是正确的。

Figured it out, I noticed that on the machine that looked like php oci oracle query "omits" decimals it was actually delimiting decimals with a comma, not a period. It had to do with NLS settings for displaying a number.

There are 3 levels of NLS settings: DATABASE, INSTANCE and SESSION. SESSION had the highest priority. So in order for a number to display in conventional format as 1,234.56 where thousands are separated by a comma and decimals by a period we need to set *NLS_NUMERIC_CHARACTERS* to '.,' using the following command:

ALTER SESSION SET NLS_NUMERIC_CHARACTERS = '.,'

I execute the command before any queries so all my numbers are now proper.

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