Ibatis+Oracle:如何更新浮点值
我正在尝试更新oracle数据库中的浮点值,但保存的值只是浮点值的整数部分。
我使用表达式
update TABLE
SET VALUE = #value:NUMERIC#
WHERE ID = #id#
The Value is Defined as Number(19,4) NULL
I'm trying to update a float value in oracle database, but the saved value is only the integer part of the float value.
I'm using the expression
update TABLE
SET VALUE = #value:NUMERIC#
WHERE ID = #id#
The Value is defined as Number(19,4) NULL
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您很可能正在尝试使用浮点值更新数据类型 NUMBER(p) 的列。
例如,如果我创建一个列类型为 NUMBER(2) 的表并尝试将 10.2 插入该列,则插入的实际值为 10。
试试这个。
输出将为 10。
如果要将浮点值保存到列中,请将其数据类型更改为“NUMBER”,或者如果您确定浮点值的精度和小数位数,则可以使用 NUMBER(p,s)。阅读有关 NUMBER 类型的信息 < a href="http://download.oracle.com/docs/cd/A81042_01/DOC/server.816/a76965/c10datyp.htm#743" rel="nofollow">此处
Most likely you are trying to update a column of data type NUMBER(p) with a floating point value.
For example, If I create a table with a column type of NUMBER(2) and try to insert 10.2 into that column the actual value that gets inserted is 10.
Try this.
The output would be 10.
If you want to save floating point values into the column change its datatype to just 'NUMBER' or if you are sure about the precision and scale of the floating point values, you can use NUMBER(p,s).Read about NUMBER type here