M
matt
hey all,
ive read some good articles on the tenents of serialization and when &
why youd want to do it, as well as the types. great!
now id like to put it to practice. however....none of the articles i
found had database examples -- all were files. how do i insert a memory
stream into the database? (im currently usesing oracle, so this would
be into a table w/ a CLOB column).
heres what i have so far:
DataTable someData = GetData();
MemoryStream stream = new MemoryStream();
BinaryFormatter formatter = new BinaryFormatter();
formatter.Serialize(stream, someData);
....thanks for the tips or links.
matt
ive read some good articles on the tenents of serialization and when &
why youd want to do it, as well as the types. great!
now id like to put it to practice. however....none of the articles i
found had database examples -- all were files. how do i insert a memory
stream into the database? (im currently usesing oracle, so this would
be into a table w/ a CLOB column).
heres what i have so far:
DataTable someData = GetData();
MemoryStream stream = new MemoryStream();
BinaryFormatter formatter = new BinaryFormatter();
formatter.Serialize(stream, someData);
....thanks for the tips or links.
matt