How to Store data without using Database and how to retrieve them?

前端 未结 8 911
小鲜肉
小鲜肉 2020-12-11 08:10

I am parsing the html file to extract tabular information through column names. And I want like let user give the input for column name. And according to that column names t

8条回答
  •  温柔的废话
    2020-12-11 09:06

    Maybe you could serialize a DataTable, but keep in mind if you fill it with data this can get large and take serious amount of time to serialize or deserialize. If data is stored otherwise, you might want to store column info in a config/project file.

    HTH, -sa

提交回复
热议问题