sql 2005 中 有个输出参数 @price decimal(9,2) output
parameters[11].Direction = ParameterDirection.Output;
用 Convert.ToDecimal(parameters[11].Value) 获取这个值
发现,得到值老是被四舍五入,这是为什么呢?
在线等!
Convert.ToString(parameters[11].Value);
是不是 decimal的位数不够 我一般用decimal(18,2)。。。。。