I have a database which has multiple users that are not connected. What I would like to do is make it possible for me to automate synchronization with these databases when they do come together. For example copy all the new records in a certain table to that same table in a different database without deleting any of the existing records. The only problem I have is the actual copying of the data. If I could find a way to copy a whole recordset instead of :
recordset1.addnew
recrodset1!field1 = recordset2!field1
recordset1!field2 = recordset2!field2
and so on
I would rather be able to say something like
recordset1.copyto recordset2
or something similar.
I have tried using append queries, but i get referential integrity errors when it tries to copy over and I think it would be easier for me to use recordsets.
Any help would be appreciated.
Thanks
recordset1.addnew
recrodset1!field1 = recordset2!field1
recordset1!field2 = recordset2!field2
and so on
I would rather be able to say something like
recordset1.copyto recordset2
or something similar.
I have tried using append queries, but i get referential integrity errors when it tries to copy over and I think it would be easier for me to use recordsets.
Any help would be appreciated.
Thanks