Data Access ModesQuestion: Assume that several users want to access a database table at the same time. Would you suggest to use a connection-oriented or a connectionless access protocol? Answer: Assumption: several users want to read the data concurrently. The connectionless architecture is based on the idea of caching the data and to keep concurrent connections to a database low. |
||