SqlCommand 参数 Add vs. AddWithValue
- 论坛
- SqlCommand 参数 Add vs. AddWithValue
6 浏览
SqlCommand 参数 Add vs. AddWithValue
在什么情况下应该使用Parameters. Add / AddWithValue
?
在下面的MSDN示例中,他们对int
使用Parameters.Add
,对string
使用Parameters.AddWithValue
command.Parameters.Add("@ID", SqlDbType.Int); command.Parameters["@ID"].Value = customerID; command.Parameters.AddWithValue("@demographics", demoXml);
对于datetime
最好使用什么?