access describes how hibernate acesses the data in your persistent classes. It has nothing to do with the DB.
If set to
- field: H assumes that your class has a variable with the given name. H accesses it via reflection no matter what visibility it has.
- property: H assumes that your class has a get and set method with the given name. H accesses this methods to get/set the values of the persistent classes.
- ClassName: H useses the class name you specify to access the property. The class must implement the interface PropertyAccessor.
HTH
Ernst