Reference | Help | Introduction | Slide Show | Class Hierarchy | InterClient | ||
PREV | NEXT | FRAMES | NO FRAMES |
DBMS client library provides client/server
A DBMS protocol is a communication protocol between the DBMS client and the DBMS server, it should not be confused with a low level network protocol such as TCP/IP. It regulates data exchange, control of transactions, and the like.
So the DBMS client library drives the network messaging protocol which controls the server. This includes issues of pipelining, prefetching rows, two phase commit, event handling, managing database object handles, synchronizing cursor and transaction state with the server, blob streaming, and many other tasks.
ODBC is a C api, and is therefore somewhat platform dependent. Recompilation is necessary, as well as porting of any non-standardized system calls.
Here's some example dbms client libraries you may have heard of: Oracle oci, or Sybase dbLib, or InterBase isc. The network messaging protocol for Sybase is known as Tabular Data Stream (TDS), and the DBMS Remote Layer might be Sybase Open Server.
Reference | Help | Introduction | Slide Show | Class Hierarchy | InterClient | ||
PREV | NEXT | FRAMES | NO FRAMES |