Does anyone know how I can insert a record in a custom database with the information in the PrivateMembersData. Basically the PrivateMembersData is read only and I want to link the login email record on that database into a custom database collection that I can use for extended records and that a user can maintain.
You can always query the PrivateMembersData collection and insert a specific field into the new database.
Depending on how you’re registering new members you might be able to use data hooks to automatically insert records into the new collection after it has been inserted into your PrivateMembersData collection.
As alternative, you can also export your data from the members’ collection by field and import into the new collection, however, this is less practical.