vote up 0 vote down star

Hi everyone,

I am wondering if it's possible to add data to a DataTable through a DataGridView and save the data in the DataTable by serializing it--and all of this without having to create an underlying database. One DataTable is sufficient for the amount of data I am trying to store and a database is definitely overkill.

Thanks!

flag

2 Answers

vote up 1 vote down

I don't think I understand you question about the serialization.

If you assign a DataTable to a DataGridView DataSource property, when you input data in the form, it will be automatically added to the DataTable.

If you want to persist the data inside the DataTable outside a DB, you should use the DataTable WriteXml() method (and ReadXml() to load the data). As you see, the data is serialized in xml format.

link|flag
Agreed, Serialization is an alternative but I would go for WriteXML, maybe to a CompressionStream. – Henk Holterman May 23 at 20:51
vote up 0 vote down

Thank you! I will try this.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.