将 SQL 条件作为 OleDb 参数传递



我有以下代码:

Dim executedCmd As OleDb.OleDbCommand = m_dbMgr.GetCommand()
executedCmd.CommandText = "select * from [Parameters] where "
Dim SQLcondition As String = String.Empty
For i As Integer = 0 To ParameterName.Count - 1
 executedCmd.CommandText += "ParameterName = @parametername" + i.ToString() + " and ParameterValue @ParamaterCondition" + i.ToString() + " @ParameterValue" + i.ToString()
 executedCmd.Parameters.AddWithValue("@parametername" + i.ToString(), ParameterName(i))
 executedCmd.Parameters.AddWithValue("@ParameterValue" + i.ToString(), ParameterValue(i))
 executedCmd.Parameters.AddWithValue("@ParamaterCondition" + i.ToString(), Condition(i))
Next

ParameterNameParameterValueParameterCondition都是相同长度ArrayList,但代码不能正常工作。我已经验证了所有变量都有值。

当我运行代码时,它报告语法错误:"查询表达式中缺少操作"

问题是ParameterCondition的值像('>''<''=' ,....一些逻辑 SQL 运算符)。

编辑:如何在参数中包含条件?

在 where 之后添加1 = 1以简化构建逻辑表达式。请注意,AND逻辑运算符添加的所有条件。您可以从列名称生成参数名称。

executedCmd.CommandText = "select * from [Parameters] where 1 = 1"
....
executedCmd.CommandText += " AND " + ParameterName(i) + " " + Condition(i) + " @" + ParameterName(i)
executedCmd.Parameters.AddWithValue("@" + ParameterName(i), ParameterValue(i))

参数条件必须全部是二元运算符。

数据库引擎将在将参数替换为值之前检查 SQL 语句的语法。因此,像"WHERE @p1 @p2 @p3"这样的内容将无法正确解析。将您的条件替换为字符串表达式,例如

commandtext = parameterName + condition + " @p1"

相关内容

  • 没有找到相关文章

最新更新