My Palm App has three databases. Initially I thought I would create three DLL's to do the sync. I see now however that you cannot register the second DLL because the Creator ID is already registered using regsvr32.
Should I be doing the sync of all three databases in a single DLL? The sync is to three tables in the same Access Database.
Many thanks
Les
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
There's no reason why you can't synchronise as many databases as you want in the one conduit DLL. Simply either have multiple remote table components on your datamodule with the table details you want, or reuse the one table component - you can set the properties for the table you want and then synchronise them one by one.
In one of my existing projects I'm up to a dozen tables. :)
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi there again,
My Palm App has three databases. Initially I thought I would create three DLL's to do the sync. I see now however that you cannot register the second DLL because the Creator ID is already registered using regsvr32.
Should I be doing the sync of all three databases in a single DLL? The sync is to three tables in the same Access Database.
Many thanks
Les
There's no reason why you can't synchronise as many databases as you want in the one conduit DLL. Simply either have multiple remote table components on your datamodule with the table details you want, or reuse the one table component - you can set the properties for the table you want and then synchronise them one by one.
In one of my existing projects I'm up to a dozen tables. :)