The registration is totally external to the database and is done by the
"data server". The dataserver is a program sitting between the application
and the database.
This method normally works by sending a TCP request from the application to
the "data server" which may or may not reside on the same machine as the
database. Performance is better if it does.
Your application call is of the form:
ReplyClass rc = SendRequest(RequestType, RequestParameters. Registration)
Request Type: Delete, Update, move, lock, unlock - You decide
Request Parameters: Totally application dependant
The registration parameter tells the dataserver what to do...
1) Just give me the data and forget I ever asked for it.
2) Give me the data and tell me when someone (including me) changes it. I
will supply a key to you (the dataserver) and when it is updated send me back
the key and the updated field / row whatever.
3) Give me the data and lock it against changes by anybody else.
4) Update and unlock (or just unlock)
If you are going to read and update later you would put a lock on it. I use
the word registration here as it was commonly used in Service-based OOP
programming.
The Data Server has the problem of tracking all the requests and memorizing
them. Each 'user+application' requires a unique ID so the dataserver can
track who has what.
There are a number of areas to be careful about:
1) Applications must tell the dataserver when they are closing so the
dataserver can release all locks. Users switching off / crashing without
closing down can cause problems. Lock timeouts are essential.
2) If there is a considerable delay between the read and update (or rather
the dataserver request to read and the dataserver request to update) then it
will be necessary to ...
read without lock
let the user do his thing
read with lock to make sure nothing has changed
update and release lock
3) Each user application must have a Listener running so it can receive
updates.
4) Deadly embraces can happen but a short timeout can fix that.
5) The application / client side has to cope with notification that a lock
has timed out or been supplanted by a request with a higher permission.
Like I say - it's lot of work and you have to get your logic right. But once
re-usable objects are written it is easy. And only use this architecture when
really necessary. 90% of your stuff will continue to use good old selects.