我是.NET的新手,但需要深入游泳一段时间。我的任务是扩展现有的单元测试,该测试目前只是尝试接收所有存储过程的列(作为测试数据库连接及其中的模式的完整性的一种方法)。目标是检索所有存储过程的参数并尝试使用空值运行它们,进行测试以验证是否未返回任何记录集。我一直在试图用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.
答案 0 :(得分:2)
使用DBNull.Value
代替null
。