I saved an object of type DataTable into SQL 2005 database in a field of type varbinary. I want to retrieve it back but I wasn't able to type cast it. This is how i saved it.
MemoryStream memStream = new MemoryStream();
StreamWriter sw = new StreamWriter(memStream);
sw.Write(dt);
con.Open();
using (SqlCommand cmd = new SqlCommand("INSERT INTO Tables(TableName, TableData, QuestionID) VALUES (@TableName, @TableData, @QuestionID)", con))
{
cmd.Parameters.Add("@TableName", SqlDbType.VarChar).Value = "a new table";
cmd.Parameters.Add("@TableData", SqlDbType.VarBinary,Int32.MaxValue).Value = memStream.GetBuffer();
cmd.Parameters.Add("@QuestionID", SqlDbType.VarChar).Value = "2";
cmd.ExecuteNonQuery();
}
The 'dt' is the DataTable object instance.
What your talking about is Binary Serialization and Deserialization. Maybe this will help.
using System;
using System.IO;
using System.Runtime.Serialization;
using System.Runtime.Serialization.Formatters.Binary;
using System.Data;
using System.Text;
namespace Serial
{
public class Ser
{
public static byte[] StrToByteArray(string str)
{
UTF8Encoding encoding = new UTF8Encoding ();
return encoding.GetBytes(str);
}
public static string ByteArrayToStr(byte[] barr)
{
UTF8Encoding encoding = new UTF8Encoding ();
return encoding.GetString(barr, 0, barr.Length);
}
public static void Main(String[] args)
{
DataTable dt = new DataTable();
DataRow dr;
dt.Columns.Add(new DataColumn("IntegerValue", typeof(Int32)));
dt.Columns.Add(new DataColumn("StringValue", typeof(string)));
dt.Columns.Add(new DataColumn("DateTimeValue", typeof(DateTime)));
dt.Columns.Add(new DataColumn("BooleanValue", typeof(bool)));
for (int i = 1; i <= 1; i++)
{
dr = dt.NewRow();
dr[0] = i;
dr[1] = "Item " + i.ToString();
dr[2] = DateTime.Now;
dr[3] = (i % 2 != 0) ? true : false;
dt.Rows.Add(dr);
}
//Serialize
BinaryFormatter bformatter = new BinaryFormatter();
MemoryStream stream = new MemoryStream();
string s;
bformatter.Serialize(stream, dt);
byte[] b = stream.ToArray();
s = ByteArrayToStr(b);
stream.Close();
dt = null;
//Now deserialise
bformatter = new BinaryFormatter();
byte[] d;
d = StrToByteArray(s);
stream = new MemoryStream(d);
dt = (DataTable)bformatter.Deserialize(stream);
stream.Close();
}
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With