Bạn sẽ có thể viết một cái gì đó như thế này:
string queryStmt = "INSERT INTO dbo.YourTable(Content) VALUES(@Content)";
using(SqlConnection _con = new SqlConnection(--your-connection-string-here--))
using(SqlCommand _cmd = new SqlCommand(queryStmt, _con))
{
SqlParameter param = _cmd.Parameters.Add("@Content", SqlDbType.VarBinary);
param.Value = YourByteArrayVariableHere;
_con.Open();
_cmd.ExecuteNonQuery();
_con.Close();
}
Sử dụng Linq-to-SQL, bạn sẽ viết một cái gì đó như thế này:
using(YourDataContextHere ctx = new YourDataContextHere())
{
SomeClassOfYours item = new SomeClassOfYours();
item.ByteContent = (your byte content here);
ctx.SomeClassOfYourses.InsertOnSubmit(item);
ctx.SubmitChanges();
}
Điều đó sẽ chèn byte[]
của bạn thành một cột Content
thuộc loại VARBINARY
trong bảng SQL Server của bạn dưới dạng luồng byte, bạn có thể đọc lại 1:1 sau này.