L
Lloyd Dupont
let's say I have a table call table with a column 'image' containing blob
image.
could I wrote a SqlDataAdapter with 2 SqlCommand like
SELECT image FROM Table
INSERT INTO Table (image) VALUES (@image)
and set an in parameter '@image' with a bitmap value.
is it enough to fetch image and insert them into the database ?
how should I do ?
image.
could I wrote a SqlDataAdapter with 2 SqlCommand like
SELECT image FROM Table
INSERT INTO Table (image) VALUES (@image)
and set an in parameter '@image' with a bitmap value.
is it enough to fetch image and insert them into the database ?
how should I do ?