JDBC 3 Tier Example
“3 Tier” refers to the presence of a “middle tier” service between the client and the database server
Commands are send to the middle-tier first, which then sends the SQL to the database and returns results from the database to the client
- avoids installations of any vendor specific libraries(.so or .DLL files) at the client side
- control over access and updates of database