When importing the database, the csv format left spaces in the columns, so the database cannot be queried properly.
Name, Atomic_Number, Symbol
Name,Atomic_Number,Symbol
The import was formatted like the first line instead of the second, so the database interprets the columns like " Entry" instead of "Entry". This is a problem, both because the return value of queries will be different, and because queries will not be preformed correctly due to inconstancy in the names of the columns.
When importing the database, the csv format left spaces in the columns, so the database cannot be queried properly.
The import was formatted like the first line instead of the second, so the database interprets the columns like
" Entry"
instead of"Entry"
. This is a problem, both because the return value of queries will be different, and because queries will not be preformed correctly due to inconstancy in the names of the columns.