嗨,我正在使用 C# 制作 CLR 存储过程,为此我正在通过示例进行学习。
以下是我现在正在尝试的
public static void GetProductsByPrice(int price)
{
SqlConnection connection = new SqlConnection("context connection=true");
connection.Open();
string commandText = "SELECT * FROM Products WHERE PRICE < " + price.ToString();
SqlCommand command = new SqlCommand(commandText, connection);
SqlDataReader reader = command.ExecuteReader();
// Create the record and specify the metadata for the columns.
SqlDataRecord record = new SqlDataRecord(
new SqlMetaData("col1", SqlDbType.NVarChar, 100),
new SqlMetaData("col2", SqlDbType.NVarChar, 100));
// Mark the begining of the result-set.
SqlContext.Pipe.SendResultsStart(record);
// Send 10 rows back to the client.
while (reader.Read())
{
// Set values for each column in the row.
record.SetString(0, reader[1].ToString()); //productName
record.SetString(1, reader[2].ToString()); // productDescription
// Send the row back to the client.
SqlContext.Pipe.SendResultsRow(record);
}
// Mark the end of the result-set.
SqlContext.Pipe.SendResultsEnd();
}
但是当我尝试运行它时,出现以下错误
消息 6549,级别 16,状态 1,过程 GetProductsByPrice,第 0行在
执行用户定义的例程或聚合“GetProductsByPrice”期间发生 .NET Framework 错误:
System.Data.SqlClient.SqlException:不支持区域设置标识符 (LCID) 16393通过 SQL Server。
System.Data.SqlClient.SqlException:
在 Microsoft.SqlServer.Server.SmiEventSink_Default.DispatchMessages(Boolean ignoreNonFatalMessages)
在 Microsoft.SqlServer.Server.SqlPipe.SendResultsStart(SqlDataRecord 记录)
在 StoredProcedures.GetProductsByPrice(Int32 价格)
用户交易,如果有的话,将被回滚。
我指的是这个msdn 文章的代码。
请帮我解决这个问题。