我想转移到CommandText
表名作为参数,类似于@column
。我怎样才能做到这一点?因为列名称是作为自定义参数传输的。
using (SqlConnection connection = SQL.Connection())
{
using (SqlCommand cmd = connection.CreateCommand())
{
cmd.Parameters.Add("@data", SqlDbType.VarChar).Value = "some_string";
cmd.CommandText = "UPDATE users SET colum=@data";
cmd.ExecuteNonQuery();
}
}
答案 0 :(得分:1)
您无法在常规SQL中执行此操作 - 如果您必须具有可配置的列名称(或表名称),则必须使用动态SQL - 没有其他方法可以实现此目的。示例如下所示。
string sqlCommandStatement =
string.Format("("UPDATE users SET {0}=@somedata, {1}=@somedata" ,column1, column2);
然后使用SQL Server中的sp_executesql存储过程来执行该SQL命令(并根据需要指定其他参数)。
您还可以checkthis文章
答案 1 :(得分:0)
这是一个很长的线程/问题,但也许你会发现我的这个解决方案很有帮助,因为你可以看到我在这里使用参数,这是一个动态列=)
protected void BindDate()
{
StringBuilder SQLtext = new StringBuilder();
SQLtext.AppendLine(" declare @tsql nvarchar(max) ");
SQLtext.AppendLine(" set @tsql= ");
SQLtext.AppendLine(" ' ");
SQLtext.AppendLine(" With ctemp as( ");
SQLtext.AppendLine(" select convert(varchar(10),sysDate,102) sysDate,convert(varchar(10),WeekDate,102) WeekDate,[Month],[Quarter],[Year] ");
SQLtext.AppendLine(" from sysCalendar ");
SQLtext.AppendLine(" where sysdate<=(select max(nominal_date) from ATTENDANCE_AGENT_T) ");
SQLtext.AppendLine(" and sysDate>=dateadd(MONTH,-12,getdate()) ");
SQLtext.AppendLine(" ) ");
SQLtext.AppendLine(" select distinct ' + @mydate + ' as mydate from ctemp order by '+ @mydate + ' desc ");
SQLtext.AppendLine(" ' ");
SQLtext.AppendLine(" exec(@tsql) ");
string constr = ConfigurationManager.ConnectionStrings["CIGNAConnectionString"].ConnectionString;
using (SqlConnection con = new SqlConnection(constr))
{
using (SqlCommand cmd = new SqlCommand(SQLtext.ToString()))
{
cmd.CommandType = CommandType.Text;
cmd.Parameters.AddWithValue("@mydate", Radio_range.SelectedValue);
cmd.Connection = con;
con.Open();
DropDownList_Date.DataSource = cmd.ExecuteReader();
DropDownList_Date.DataTextField = "mydate";
DropDownList_Date.DataValueField = "mydate";
DropDownList_Date.DataBind();
con.Close();
}
}
}