Best way for storing Data n a win form app

TyB

Well-known member
Joined
May 14, 2009
Messages
102
Programming Experience
3-5
I have an app I created that currently writes data to a sql db that I created and included in the app build. I did not really think this through as the app fails on another PC then I realized that I would have to install sql express on every computer which is not very user friendly.

So what are anyones best uses ideas? What ever I use will have to be usable to a datagridview either inherently or convertible to a data table to assign to the datagridview.

Thanks,
Ty
 
XML is rather handy for storing data. DataSet has .ReadXml and .WriteXml methods you can use to access the data.
 
Back
Top