in java, 10 users can use just one connection to the database if you are using design patter techniques, in other words, connection pools. You can do it using OracleConnectionCacheImpl along the singleton design patter, for example.

every DriverManager.getConnection(..) is a connection to the database, in other words, a server session.



F