I am using VFP 6.0. I use free tables in my application. The application has multiple users, so I need to keep all the tables open shared.
One part of the application calls for users to write records to a table. I do this by using the INSERT SQL command. The command will insert a record into the table with values memory variables previously created in the program.
The problem is, when more than one user tries to add a record, some of the users get an error, "File is in use by another user".
I realize that the INSERT SQL command will lock the table header and not allow multiple users to add new records until that header is unlocked, but is there a way around this?, or a better way of adding records?
Thanks
One part of the application calls for users to write records to a table. I do this by using the INSERT SQL command. The command will insert a record into the table with values memory variables previously created in the program.
The problem is, when more than one user tries to add a record, some of the users get an error, "File is in use by another user".
I realize that the INSERT SQL command will lock the table header and not allow multiple users to add new records until that header is unlocked, but is there a way around this?, or a better way of adding records?
Thanks