sqlCommand,并以编程方式检索和设置存储过程的参数
本文关键字:设置 存储过程 参数 检索 方式 编程 sqlCommand | 更新日期: 2023-09-27 18:21:35
我是.NET的新手,但需要深入了解一下。我的任务是扩展现有的单元测试,该测试目前只尝试接收所有存储过程的列(作为测试数据库连接和其中模式的完整性的一种方法)。目标是检索所有存储过程的参数,并尝试使用null值运行它们,测试以验证是否未返回任何记录集。我一直在努力跟上ADO.NET的速度,但我一辈子都想不出该怎么做。这是我所了解的(有些断章取义)。测试抱怨没有传入任何参数,但我认为我是在将现有的参数集设置为null,然后简单地将其返回。
// bind our sql schema gridview
foreach (SqlSchemaItem item in items)
{
// pull a connection
using (var sqlConnection = new SqlConnection(connectionString))
{
// open connection
sqlConnection.Open();
// get schema
try
{
/*
* Part 1 - test that the schema is ok...
*/
var sqlCommand = new SqlCommand(item.ObjectName, sqlConnection);
sqlCommand.CommandType = CommandType.StoredProcedure;
SqlCommandBuilder.DeriveParameters(sqlCommand);
sqlCommand.ExecuteReader(CommandBehavior.SchemaOnly);
// success to console
Console.WriteLine(item.ObjectName + " is ok.");
/*
* Part 2 - test that the stored procedure does not return any data.
*/
// set all the parameters to NULL
foreach (SqlParameter parameter in sqlCommand.Parameters)
{
if (parameter.Direction == ParameterDirection.Input || parameter.Direction == ParameterDirection.InputOutput)
{
parameter.Value = null;
Console.WriteLine("Parameter {0} set to null", parameter.ParameterName, parameter.Value);
}
}
var temp = sqlCommand.ExecuteReader(CommandBehavior.SingleResult);
if (temp.HasRows) {
Console.WriteLine(string.Format("A record was returned in {0} with value {0}", temp.GetName(0), temp.GetString(0)));
}
else {
Console.WriteLine("No result was returned");
}
Console.WriteLine(" ");
}
catch ...
finally ...
etc.
使用DBNull.Value
而不是null
。