I have a dataset that I'm brining data into from a sql server. when i bring data into the dataset.. it creates a table in the dataset and that table has 1 column. What I want to do is add a column to that table, so that I can put an image in it from the file system. The column I'm bringing back from the database holds the path to the image. I've tried adding that column to the datasets table, but every time I do it, it ends up creating a second table in the dataset. How do I add the column to the existing table in the dataset.
the dataset
ex: da.Fill(ds, "Pic")
adding a column to it
dt.Columns.Add("Image", GetType(System.Byte))
thanks for the help
Shannon
the dataset
ex: da.Fill(ds, "Pic")
adding a column to it
dt.Columns.Add("Image", GetType(System.Byte))
thanks for the help
Shannon