我有一个执行存储过程并返回该存储过程的值的方法。我有一个VIN,在SQL中是VarBinary
类型。我不确定我可以用什么来获得价值。
这是我的代码:
// Get Customer Product By CustomerID
public Model.CustomerProduct Get_CustomerProduct(int Customer_ID)
{
Model.CustomerProduct model = null;
string myConnection = System.Configuration.ConfigurationManager.ConnectionStrings[connectionName].ToString();
SqlDatabase db = new SqlDatabase(myConnection);
int bufferSize = 100;
byte[] outByte = new byte[bufferSize];
using (DbCommand command = db.GetStoredProcCommand("Get_Customer_Product"))
{
db.AddInParameter(command, "Customer_ID", DbType.Int32, Customer_ID);
var result = db.ExecuteReader(command);
try
{
if (result.FieldCount == 0)
model = null;
else
{
result.Read();
model = new Model.CustomerProduct()
{
Product_Name = result.GetString(2)
,VIN =result.GetBytes(3,0,outByte,0,bufferSize) // this return me wrong
};
}
}
catch (Exception ex)
{
}
return model;
}
}
我的问题是这一行:
VIN =result.GetBytes(3,0,outByte,0,bufferSize)
这是返回44,但是假设要返回的值是:
0x00D1CCE9771AE7554D479F7B93A45611010000004158D130E5097EF2924DEC4C6255E5BAF4C8EF4C2AC2A8FD9F29295F41DA3550123C6C4575788F5E6
答案 0 :(得分:2)
GetBytes方法返回它写入数组的字节数,而不是字节本身。看看outByte
的内容,你应该在那里找到你的数据。
我还建议您先使用空缓冲区调用GetBytes
。这将使它返回字段的长度,允许您正确调整缓冲区的大小:
int len = result.GetBytes( 3, 0, null, 0, 0 );
byte[] buf = new byte[len];
result.GetBytes( 3, 0, buf, 0, buf.Length );
model = new Model.CustomerProduct()
{
Product_Name = result.GetString(2),
VIN = buf
};
如果您现在运行的代码,您很可能也必须将VIN
的类型更改为byte[]
。
答案 1 :(得分:2)
GetBytes返回读取的字节数。由于您要将Getbytes返回值分配给VIN,因此您会看到在VIN中读取的字节数。
相反,您必须从输出缓冲区读取,即在您的情况下,outByte将具有读取的字节。