请教c#的sqlcommand方法的parameters属性的用法
看这段代码:privatestaticvoidUpdateDemographics(Int32customerID,stringdemoXml,stringconnect...
看这段代码:
private static void UpdateDemographics(Int32 customerID,
string demoXml, string connectionString)
{
// Update the demographics for a store, which is stored
// in an xml column.
string commandText = "UPDATE Sales.Store SET Demographics = @demographics "
+ "WHERE CustomerID = @ID;";
using (SqlConnection connection = new SqlConnection(connectionString))
{
SqlCommand command = new SqlCommand(commandText, connection);
command.Parameters.Add("@ID", SqlDbType.Int);
command.Parameters["@ID"].Value = customerID;
// Use AddWithValue to assign Demographics.
// SQL Server will implicitly convert strings into XML.
command.Parameters.AddWithValue("@demographics", demoXml);
try
{
connection.Open();
Int32 rowsAffected = command.ExecuteNonQuery();
Console.WriteLine("RowsAffected: {0}", rowsAffected);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
问题1:其中这行 command.Parameters.Add("@ID", SqlDbType.Int);
双引号中必须也要写@ID吗,是必须要和sql语句中的参数名字一样吗,必须有@,而且名字必须一样吗?
问题2: command.Parameters["@ID"].Value = customerID;
这句是必须的吗?没有这句,能按顺序对应吗?
问题3:command.Parameters.AddWithValue("@demographics", demoXml);
这句为什么要使用AddWithValue方法,它和Add方法有什么不一样?用这句,就不用加问题2那句了吗? 展开
private static void UpdateDemographics(Int32 customerID,
string demoXml, string connectionString)
{
// Update the demographics for a store, which is stored
// in an xml column.
string commandText = "UPDATE Sales.Store SET Demographics = @demographics "
+ "WHERE CustomerID = @ID;";
using (SqlConnection connection = new SqlConnection(connectionString))
{
SqlCommand command = new SqlCommand(commandText, connection);
command.Parameters.Add("@ID", SqlDbType.Int);
command.Parameters["@ID"].Value = customerID;
// Use AddWithValue to assign Demographics.
// SQL Server will implicitly convert strings into XML.
command.Parameters.AddWithValue("@demographics", demoXml);
try
{
connection.Open();
Int32 rowsAffected = command.ExecuteNonQuery();
Console.WriteLine("RowsAffected: {0}", rowsAffected);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
}
}
问题1:其中这行 command.Parameters.Add("@ID", SqlDbType.Int);
双引号中必须也要写@ID吗,是必须要和sql语句中的参数名字一样吗,必须有@,而且名字必须一样吗?
问题2: command.Parameters["@ID"].Value = customerID;
这句是必须的吗?没有这句,能按顺序对应吗?
问题3:command.Parameters.AddWithValue("@demographics", demoXml);
这句为什么要使用AddWithValue方法,它和Add方法有什么不一样?用这句,就不用加问题2那句了吗? 展开
1个回答
展开全部
1:
必须和sql中的参数名一样,但加不加@都行。
2:
command.Parameters.Add("@ID", SqlDbType.Int);只是添加了个参数,但还没赋值。
command.Parameters["@ID"].Value = customerID;这句是赋值,必须有。
3:
command.Parameters.AddWithValue("@demographics", demoXml);
这句相当于上面两句合起来,你可以把上面两句改成这样:
command.Parameters.AddWithValue("@ID", customerID);
必须和sql中的参数名一样,但加不加@都行。
2:
command.Parameters.Add("@ID", SqlDbType.Int);只是添加了个参数,但还没赋值。
command.Parameters["@ID"].Value = customerID;这句是赋值,必须有。
3:
command.Parameters.AddWithValue("@demographics", demoXml);
这句相当于上面两句合起来,你可以把上面两句改成这样:
command.Parameters.AddWithValue("@ID", customerID);
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |