If you've got an object that has variables that have a name with a space in it (such as when the variable has two words in the name), you can't access it with the usual syntax.
For example, normally you can use:
Student->Name
but if the field is "First Name" and not just "Name" then you have to use different syntax.
Student->{'First Name'}