First of all, persistence only works with Items, not Things. Things are not equal to Items. Things represent a physical/logical external device. A Thing has one or more Channels which describe that Thing’s commands. An Item is linked to a Thing via one of these Channels.
Rules, persistence, and Sitemaps only operate on Items, not Things.
Wandthermostat* in a .persist file means "apply the following strategy to all members of the Wandthermostat Group`. * in this context is not a wild card.
You must either list each Item individually in place of “xxx” (separated by commas) or you must create a Group and make all of your Items that should be saved by that DB and that strategy be members of the Group. Then use the “*” with the Group name.
Group gSetTemps
Number Valve1 "label" <icon> (gSetTemps) { channel="yada yada yada" }
Number Vavle2 "label" <icon> (gSetTemps) { channel="yada yada yada" }
...