The Cursor class is best used through the spssdata module, which provides a lot of convenience features wrapped around the Cursor class. spssdata is installed with the plugin, but you need to look at the docstrings in the module for usage instructions.
The Dataset class has some functionality not available in the other classes, especially when it comes to creating new variables or datasets and random access, but it is much slower than the other modules. I suggest that if the spssdata functionality is sufficient, you should use that; otherwise use the Dataset code.
--