I have got a CSV data file which has lots of records. I have to read each of these records by C++ and then put them in a structure to do the processes that I need. I do not have a experience with the databases and do not know where to start. That would be great if you know a blog or tutorial with example which are doing exactly about database extraction. There are a lot of information about how to read a file or ... but they are either so complex or not relevant to CSV files or they are not doing the function that I need. The data that I have is like:
> There are a lot of information about how to read a file or ...
> but they are either so complex or not relevant to CSV files ...
Parsing a delimited file which contains quoted fields is not trivial -
because a quoted field can contain the delimiter within them, quotes can be nested,
a field may contain a quote character which would be escaped and so on.