111,129
社区成员
发帖
与我相关
我的任务
分享
command = new SqlCommand("UPDATE 公积金明细 SET 存入 = @存入, 支取 = @支取 WHERE autoid = @autoid", mydb.conn);
command.Parameters.Add("存入",SqlDbType.Decimal, 18,"存入");
command.Parameters.Add("@支取", SqlDbType.Decimal,18,"支取");
command.Parameters.Add("@autoid", SqlDbType.Int,4, "autoid");
da.UpdateCommand = command;