Re: jdbc on CLIENT SIDE + connection pool= ??
Posted By:
Anonymous
Posted On:
Friday, February 15, 2002 07:41 AM
You'll need a server program that accepts requests (SQLs or a custom request format), makes the connection to the database, gets the results, and send the results back to the client. The results could be sent through a serialized object or csv or xml or whatever. The requests could be made by sockets or any alternative... The server needs only one connection, of a connection pool if you want to create a thread per request (which is better)