TODO: BB
Import CSV
What is CSV?
A comma-separated values (CSV) file stores tabular data (numbers and text) in plain text. Plain text means that the file is interpreted a sequence of characters, so that it is human-readable with a standard text editor. Each line of the file is a data record. Each record consists of one or more fields, separated by commas. The use of the comma as a field separator is the source of the name for this file format.
See http://en.wikipedia.org/wiki/Comma-separated_values
You can also use tabulator ('\t') oder semicolon (';') as a delimiter.