Page 1 of 1

Google Drive Does Not Sync

PostPosted: Thu Apr 25, 2013 3:46 am
by acwoo1
Hi

If I enter data form computer A, the record in computer B is updated.
But if I enter data form computer B, the record in computer A is not updated.
How to make it sync.

Thanks

Regards
ACWoo
FWH1303+Harbour+bcc582

Re: Google Drive Does Not Sync

PostPosted: Thu Apr 25, 2013 3:51 am
by acwoo1
Hi

I tested with txt file. It always sync, regardless of whether I modify it computer from A or computer B.

Regards
ACWoo
FWH1303+harbour+bcc582

Re: Google Drive Does Not Sync

PostPosted: Thu Apr 25, 2013 12:54 pm
by Rick Lipkin
ACWoo

You might try a dbskip(0) to refresh the buffers on each workstation to check if you can get them to see each others updates.

Rick Lipkin

Re: Google Drive Does Not Sync

PostPosted: Sat Apr 27, 2013 2:55 am
by acwoo1
Thanks

I get file1[Conflict 1], file1[Conflict 2], etc if the same file is accessed by two users. How to solve this.

Regards
ACWoo
FWH1303+harbour+bcc582

Re: Google Drive Does Not Sync

PostPosted: Sat Apr 27, 2013 12:39 pm
by ADutheil
You probably have to close the file to allow other user to write the data.

Re: Google Drive Does Not Sync

PostPosted: Sat Apr 27, 2013 12:49 pm
by acwoo1
Thanks

How to find out another user is using the file in Google Drive ?

Regards
ACWoo
FWH1303+bcc582+Harbour

Re: Google Drive Does Not Sync

PostPosted: Sat Apr 27, 2013 2:19 pm
by ADutheil
If you try to open a file exclusive and it fails -> somebody or yourself already opened it in another session.

Re: Google Drive Does Not Sync

PostPosted: Sat Apr 27, 2013 2:42 pm
by James Bott
You can't do realtime syncs with databases. All users would have to close the database before it can sync--and the entire database must then be synced on each computer. This is not the same as using a database server where the server contains the only copy of the database and users just download groups of records (or a single record) for updating. Then all changes to records in the group are updated one record at a time to the server's database. And the updates are done by locking the record to be updated, then updating. You cannot simulate this with something like Google Drive.

Regards,
James

Re: Google Drive Does Not Sync

PostPosted: Sun Apr 28, 2013 12:36 am
by acwoo1
Thanks

How do I find out whether another user is also log in to Google Drive ?

Regards
ACWoo
FWH1303+bcc582+Harbour

Re: Google Drive Does Not Sync

PostPosted: Sun Apr 28, 2013 3:50 pm
by James Bott
How do I find out whether another user is also log in to Google Drive ?


I think you need to ask this on a Google forum.

James