The remote jdbc driver has two parts :
-
Client side implementation ( JDBC driver API)
-
Server side implementation ( Middleware )
|
At the client side, the implementation will be as a database independent driver (with Router like functionality) which will route the requests made by the Application program with jdbc API to the concerned machine where the server implementation of this driver will be active.
|
At the database server side the implementation of this driver will consist of a server process which can actually use the specific JDBC driver for the local database on that machine and connect and talk to the database.
|