“列计数与第 1 行的值计数不匹配”
本文关键字:不匹配 列计数与第 | 更新日期: 2023-09-27 18:20:56
我查看了不同的链接(例如这个(,但我仍然无法了解此错误消息的来源。我一直在数列、昏迷等,但没有找到问题出在哪里。
int exId = stride.getExerciseId();
string timestamp = stride.getTimeStamp();
int startSec = stride.getBeginningSec();
int startMsec = stride.getBeginningMSec();
int endSec = stride.getEndSec();
int endMSec = stride.getEndMSec();
float length = stride.getLength();
float duration = stride.getDuration();
float steplength = stride.getStepLength();
float stepDuration = stride.getStepDuration();
string supportingFoot = stride.getSupportingFoot();
string query = "INSERT INTO singlesupportstate (ExerciseId , TimeStamp , SingleSupportStateStartSeconds , SingleSupportStateStartMSeconds , SingleSupportStateEndSeconds , SingleSupportStateEndMSeconds , StrideLength , StrideDuration , StepLength , StepDuration , SupportingFoot)
VALUES("+ exId +",'" + timestamp +"',"+ startSec +"," + startMsec + "," + endSec + "," + endMSec + "," + length +"," + duration + "," + steplength + "," + duration + ",'" + supportingFoot + "')";
if (this.OpenConnection() == true)
{
MySqlCommand cmd = new MySqlCommand(query, connection);
cmd.ExecuteNonQuery();
this.CloseConnection();
}
编辑:
所以我更改了我的代码以使用参数化查询,这是有效的新代码:
if (this.OpenConnection() == true)
{
MySqlCommand cmd = connection.CreateCommand() ;
cmd.CommandText = "INSERT INTO singlesupportstate (ExerciseId , TimeStamp , SingleSupportStateStartSeconds , SingleSupportStateStartMSeconds , SingleSupportStateEndSeconds , SingleSupportStateEndMSeconds , StrideLength , StrideDuration , StepLength , StepDuration , SupportingFoot) "
+" VALUES(@exId,@timestamp,@startSec,@startMsec,@endSec,@endMSec,@length,@duration,@steplength,@stepduration,@supportingFoot)";
cmd.Parameters.Add("@exId", MySqlDbType.Int32);
cmd.Parameters.Add("@timestamp",MySqlDbType.Timestamp);
cmd.Parameters.Add("@startMsec",MySqlDbType.Int32);
cmd.Parameters.Add("@startSec",MySqlDbType.Int32);
cmd.Parameters.Add("@endSec",MySqlDbType.Int32);
cmd.Parameters.Add("@endMSec",MySqlDbType.Int32);
cmd.Parameters.Add("@length", MySqlDbType.Float);
cmd.Parameters.Add("@duration",MySqlDbType.Float);
cmd.Parameters.Add("@steplength",MySqlDbType.Float);
cmd.Parameters.Add("@stepduration", MySqlDbType.Float);
cmd.Parameters.Add("@supportingfoot", MySqlDbType.Text);
cmd.Parameters["@exId"].Value = exId;
cmd.Parameters["@timestamp"].Value = timestamp;
cmd.Parameters["@startMsec"].Value = startMsec;
cmd.Parameters["@startSec"].Value = startSec;
cmd.Parameters["@endSec"].Value = endSec;
cmd.Parameters["@endMSec"].Value = endMSec;
cmd.Parameters["@length"].Value = length;
cmd.Parameters["@duration"].Value = duration;
cmd.Parameters["@steplength"].Value =steplength;
cmd.Parameters["@stepduration"].Value =stepDuration;
cmd.Parameters["@supportingfoot"].Value =supportingFoot;
cmd.CommandTimeout = 120;
cmd.ExecuteNonQuery();
this.CloseConnection();
}
这意味着在串联中的一个值中会破坏 INSERT,因为它具有逗号或字符串分隔符,从而破坏了整个query
字符串
在执行之前查看串联后的实际query
字符串
无论如何,使用参数来消除此问题并降低SQL注入风险。
另一个选项是singlesupportstate
表上的触发器(例如用于审核或历史记录(,该触发器也具有损坏的 INSERT。
可能发生的是以下两件事之一:
1(有'
引号使您的查询看起来值较少,因为它吞噬了逗号。2(有些数字被格式化为逗号而不是点,导致数字123.45
显示为123,45
,从而使查询认为有两个整数值:123
和45
导致值过多。
正如其他人所说,尝试使用查询参数,这种情况不会再发生。它还为您节省了大量手动转义字符串。