# This CSV file contains a list of employees and # the names of the projects ( project 'red' or project 'blue') # they are assigned to. # # Also demonstrated is the use of comments in a CSV file; lines # beginnning with '#' are comments. # (requires CsvSpec.setUseComment(true)) # # And it also demonstrates CSV Manager's built-in fault # tolerance; the third line is badly formatted (the quoted field # has an unescaped quote) and will be ignored. # (requires CsvSpec.setIgnoreBadLines(true)) # Employee Number, Name, Hired, Manager, Project Names 1, John Doe, 2006-01-01, no, red 2, Jane Doe, 2006-02-02, no, red 3, "Bad" Bob", 2006-03-03, no, red 4, Mr. Manager, 2006-04-04, yes, red:blue 5, Joe Bloggs, 2006-05-05, no, blue 6, Jane Bloggs, 2006-06-06, no, blue