首先我嘗試了一切,並且無法理解爲什麼它不會正確更新我的varbinary字段。通過在C中調用的存儲過程將Bytearray插入到SQL中#
出的1728個字節只有字節數組中的最後一個字節保存到外地...
我產生我的字節數組如下:
public static byte[] StringToByteArray(String hex)
{
int NumberChars = hex.Length;
byte[] bytes = new byte[NumberChars/2];
for (int i = 0; i < NumberChars; i += 2)
bytes[i/2] = Convert.ToByte(hex.Substring(i, 2), 16);
return bytes;
}
我也曾嘗試下面的一個:
public static byte[] ParseHex(string hex)
{
int offset = hex.StartsWith("0x") ? 2 : 0;
if ((hex.Length % 2) != 0)
{
throw new ArgumentException("Invalid length: " + hex.Length);
}
byte[] ret = new byte[(hex.Length - offset)/2];
for (int i = 0; i < ret.Length; i++)
{
ret[i] = (byte)((ParseNybble(hex[offset]) << 4)
| ParseNybble(hex[offset + 1]));
offset += 2;
}
return ret;
}
static int ParseNybble(char c)
{
if (c >= '0' && c <= '9')
{
return c - '0';
}
if (c >= 'A' && c <= 'F')
{
return c - 'A' + 10;
}
if (c >= 'a' && c <= 'f')
{
return c - 'a' + 10;
}
throw new ArgumentException("Invalid hex digit: " + c);
}
我的C#代碼來保存數據是這樣的:
using (SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["DB_Conn"].ConnectionString))
{
byte[] to_store = StringToByteArray(inventory);
//State the Stored Proc and add Values to 'cmd' to pass to the Stored Proc
SqlCommand cmd = new SqlCommand("_USP_store", conn);
cmd.CommandType = CommandType.StoredProcedure;
cmd.Parameters.AddWithValue("@A", TB_A.Text);
cmd.Parameters.Add("@B", SqlDbType.VarBinary, 1728).Value = to_store;
try
{
// Open Connection and execute Stored Proc
conn.Open();
cmd.ExecuteNonQuery();
C2_Wipe_Message.Text = "Storing success";
C2_Wipe_Message.ForeColor = Color.FromArgb(0, 0, 255, 0);
}
catch
{
C2_Wipe_Message.Text = "An error occured..";
C2_Wipe_Message.ForeColor = Color.FromArgb(0, 255, 0, 0);
}
finally
{
if (conn.State == System.Data.ConnectionState.Open)
{
//Close connection IF open
conn.Close();
}
}
}
我已經把它作爲一個字符串,我已經把它作爲純二進制,我已經把它作爲一個十六進制字節數組等
我的假設是在SQL中使用while循環,以存儲它,但是這並不能解釋爲什麼最後一個字節總是被保存,而不是字節數組的第一個字節,請賜教因爲這是真氣..
* SQL SP
@A varchar(10),
@B varbinary(1728)
AS
UPDATE Invenotry
SET A = @B
WHERE (Name = @A)
讓我們看看我想到的問題是存在的,因爲在SQL中使用循環聽起來我錯了的SQL。 – Hogan
不使用循環,但我會得到SQL過程 – Raskaroth
字段的類型是什麼?[Invenotry]。[A]'? – Hogan