15.6. Persistent Types List

The JDO runtime must have access to a list of all persistent types for each database on startup. Kodo provides two ways to maintain this list:

To migrate from using properties to using the schematool for list maintenance, delete the com.solarmetric.kodo.impl.jdbc.PersistentTypes property from your properties file and then run the schematool's register action on all persistent types. For example, in a UNIX environment, you could use the following commands:

$ cd <source directory root>
$ schematool -action register `find . -name "*.jdo"`
		
To migrate from the schematool approach to the properties approach, add the com.solarmetric.kodo.impl.jdbc.PersistentTypes list to your properties files; the system will automatically use it instead of the database table.