How can I create a connection pool to the MySQL database from a servlet on the jupiter server? I already have a DbConnectionBroker connection pool on my personal computer, but logging into to the database is different at lunarpages than on a non-shared server.
So my questions are can I create a connection pool, if so can I do it using the DbConnectionBroker from
www.javaexchange.com, and how do I do it.
On my computer I would use the following
DbConnectionBroker dbPool = DbConnectionBroker("org.gjt.mm.mysql.Driver", jdbc:mysql://<host>:<port>/"<dbName>", "<UserID>", "<Password>", 5, 50, "dbconn.log", 1.0);
How would this vary to creating a connection pool at lunarpages?