我正在尝试更新从数据库检索的DataTable,然后再将其绑定到Gridview。
但是,当我更新小数点时,小数点后的部分归零。我错过了什么?
if (HttpContext.Current.Request.IsAuthenticated)
{
// Get additional price matches
using (SqlConnection stockConn = new SqlConnection(ConfigurationManager.ConnectionStrings["LocalSqlServer"].ConnectionString))
{
// Check for trade match offer
SqlCommand tradePCCheck = new SqlCommand("getAllMyPriceMatches", stockConn);
tradePCCheck.CommandType = CommandType.StoredProcedure;
SqlParameter email = tradePCCheck.Parameters.Add("@email", SqlDbType.NVarChar);
try
{
email.Value = this.Context.User.Identity.Name;
}
catch
{
email.Value = " ";
}
SqlParameter thedate = tradePCCheck.Parameters.Add("@theDate", SqlDbType.DateTime);
thedate.Value = DateTime.Now.AddHours(-50);
stockConn.Open();
SqlDataReader pcReader = tradePCCheck.ExecuteReader();
pms.Load(pcReader);
pcReader.Close();
stockConn.Close();
}
}
//Set Connection, Open the DB & Fill Data Set
using (SqlConnection stockConn = new SqlConnection(ConfigurationManager.ConnectionStrings["LocalSqlServer"].ConnectionString))
{
SqlCommand stockCommand = new SqlCommand("getTISearchResults", stockConn);
stockCommand.CommandType = CommandType.StoredProcedure;
SqlParameter keyword = stockCommand.Parameters.Add("@keyword", SqlDbType.NVarChar);
keyword.Value = prefixText;
stockConn.Open();
SqlDataReader rd = stockCommand.ExecuteReader();
searchResults.Load(rd);
stockCommand.Dispose();
rd.Dispose();
}
// Update Results with elevated prices...
foreach (DataRow dr in searchResults.Rows)
{
// Check for PMS
DataRow[] thePMS = pms.Select("tpc_stockid = '" + dr["stockitem_number"].ToString() + "'");
if (thePMS.Length > 0)
{
decimal px = 0;
decimal cash = 0;
if (thePMS[0]["tpc_pricepx"] != null && !thePMS[0]["tpc_pricepx"].ToString().Equals(""))
{
px = Convert.ToDecimal(thePMS[0]["tpc_pricepx"]);
}
if (thePMS[0]["tpc_price"] != null && !thePMS[0]["tpc_price"].ToString().Equals(""))
{
cash = Convert.ToDecimal(thePMS[0]["tpc_price"]);
}
// update table and accept changes
DataRow[] theRows = searchResults.Select("stockitem_number = '" + dr["stockitem_number"].ToString() + "' ");
if (theRows.Length > 0)
{
theRows[0]["stockitem_pxprice"] = px;
theRows[0]["stockitem_cashprice"] = cash;
searchResults.AcceptChanges();
}
}
}
gvSearchResults.DataSource = searchResults;
gvSearchResults.DataBind();
我在分配之前输出了PX和Cash,它们保持正确的值800.19和500.12,但是在AcceptChanges之后,一旦它们被绑定,输出就是800.00和500.12。
theRows[0]["stockitem_pxprice"]
& theRows[0]["stockitem_cashprice"]
在填充searchResultsDT的数据库中都是decimal(5,2)
。
非常感谢任何帮助。
感谢。
答案 0 :(得分:1)
是的,在将值设置为网格时,您缺少string.format
。在设置之前,您需要格式化double。
如果你得到像4.506这样的数字,它会显示4.5060这样的数字,或者你有一个像4.5这样的数字,那么它会显示为4.50。
我在模板化gridview中遇到过这个问题,不得不使用string.format和format说明符来解决它。
答案 1 :(得分:0)
我认为你的表有两个字段作为int数据类型:
stockitem_pxprice
stockitem_cashprice
为这两个字段
修改数据类型为numeric (18,2)
的表格
或
为这两个字段
修改数据类型为[decimal](18, 2)
的表格
不需要进行类型转换,asp.net将隐式执行
答案 2 :(得分:0)
Foreach over theRows.Columns
并转储.Type属性以进行跟踪。您已多次提到类型为十进制(5,2),这是一种TSQL类型。 DataTable包含c#类型,它们是十进制的,就像一个非常大的浮点数。这是重要的c#类型。
您的tsql中可能有转换,例如Select myVal * 1
将myVal小数转换为int。那将是您的数据表所拥有的类型。我通常将常量设置为myVal *1.0
以防止值变为整数。就像你必须在c#中声明一个十进制小数一样,在TSQL中你必须确保专门声明文字以防止数据类型转换
答案 3 :(得分:0)
我不确定你是否有答案,但我会分享我可以通过使用 SqlDataReader 的方法解决这个问题,它是 GetDecimal 方法。你可以像这样编码
using (SqlConnection stockConn = new SqlConnection(ConfigurationManager.ConnectionStrings["LocalSqlServer"].ConnectionString))
{
// Check for trade match offer
SqlCommand tradePCCheck = new SqlCommand("getAllMyPriceMatches", stockConn);
tradePCCheck.CommandType = CommandType.StoredProcedure;
SqlParameter email = tradePCCheck.Parameters.Add("@email", SqlDbType.NVarChar);
try
{
email.Value = this.Context.User.Identity.Name;
}
catch
{
email.Value = " ";
}
SqlParameter thedate = tradePCCheck.Parameters.Add("@theDate", SqlDbType.DateTime);
thedate.Value = DateTime.Now.AddHours(-50);
stockConn.Open();
SqlDataReader pcReader = tradePCCheck.ExecuteReader();
decimal px = 0;
decimal cash = 0;
if (pcReader.Read())
{
px = pcReader.GetDecimal(0);
cash = pcReader.GetDecimal(1);
}
pcReader.Close();
stockConn.Close();
}
其中 pcReader.GetDecimal(0)表示将索引0处的数据字段作为结果集中的十进制值,它是SELECT命令中所选列的顺序。 并且存储过程 getAllMyPriceMatches ,您可以使用 JOIN 命令在两个表结果之间修改查询脚本,然后您不需要具有第二个查询范围。