我经常使用以下模式为单线程应用程序创建SqlCommands。
我现在正在创建一个Web服务,我担心这种模式不会同时处理来自多个客户端的请求。
有没有办法为多个客户端使用单个“准备好的”SqlCommand,而不是简单地将函数锁定为只允许单个客户端一次运行?
private static SqlCommand cmdInsertRecord;
public static void InsertRecord(String parameter1, String parameter2, SqlConnection connection, SqlTransaction transaction)
{
if (cmdInsertRecord == null)
{
//Create command
cmdInsertRecord = connection.CreateCommand();
cmdInsertRecord.CommandText = @"SQL QUERY";
//Add parameters to command
cmdInsertRecord.Parameters.Add("@Parameter1", SqlDbType.Int);
cmdInsertRecord.Parameters.Add("@Parameter2", SqlDbType.DateTime);
//Prepare the command for use
cmdInsertRecord.Prepare();
}
cmdInsertRecord.Transaction = transaction;
//Note SetParameter is an extension that handles null -> DBNull.
cmdInsertRecord.SetParameter("@Parameter1", parameter1);
cmdInsertRecord.SetParameter("@Parameter2", parameter2);
cmdInsertRecord.ExecuteNonQuery();
}
答案 0 :(得分:2)
有没有办法为多个客户端使用单个“准备好的”SqlCommand,而不是简单地将函数锁定为只允许单个客户端一次运行?
您不应该 - 为什么想要?
您应该每次创建一个新的SqlConnection
和一个新的SqlCommand
,并使用它。让连接池和(可能)语句池处理使其高效。
拥有静态SqlConnection
或SqlCommand
只是在寻找麻烦,IMO。