A database-server serves all requests, weather coming from local-host or remote client and to listen any request, a database server must run on a port to listen requests on that port.
As far as i know, Microsoft access don't run on any port, and it is not possible to request Microsoft access on remote machine using
DriverManager.getConnection("URL", "user", "password");
but possible if your data-source is MySql, Oracle, etc... using,
DriverManager.getConnection("jdbc:mysql://ipAddress:portNo./schemaName", "user", "password");
(if i am wrong, please correct me).
Please u guys here help me with the concept, weather Microsoft access is a
a mere file for storing data (because it don't runs on any port),
or a database server (because for Microsoft-access Type-1 driver is available , it means it must be a data-source because drivers are only available for data sources).