暗号化されたバイナリ値である文字列があります
(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();
}
}