我有一个字符串,它是一个加密的二进制值
(0x00C11EA094DC7F45AD2B13F42E26ED03010000006018F6DFCEC8BAFC47AC2854C21A5B00FEFA7C3035A9A4EF7AEBB9FDADBF7FA4B2E6392EA0DC4614).
我需要将上面的确切字符串VarBinary
从.net 传递到 SQL Server 中的列。
我怎样才能做到这一点?
问候拉吉什
我有一个字符串,它是一个加密的二进制值
(0x00C11EA094DC7F45AD2B13F42E26ED03010000006018F6DFCEC8BAFC47AC2854C21A5B00FEFA7C3035A9A4EF7AEBB9FDADBF7FA4B2E6392EA0DC4614).
我需要将上面的确切字符串VarBinary
从.net 传递到 SQL Server 中的列。
我怎样才能做到这一点?
问候拉吉什
您可以使用
var input = "your value string";
var connectionString = "";
using(var connection = new SqlConnection(connectionString))
{
connection.Open();
using(var command = new SqlCommand("your query : stored procedure", connection))
{
command.CommandType = CommandType.StoredProcedure;
// your parameter in your stored procedure
SqlParameter parameter = new SqlParameter("@parameter", SqlDbType.VarBinary);
parameter.Direction = ParameterDirection.Input;
parameter.Value = Encoding.ASCII.GetBytes(input);
command.Parameters.Add(parameter);
command.ExecuteNonQuery();
}
}