Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Connection Pooling - Server-side or Client-side

Status
Not open for further replies.

redtiger23

Programmer
May 19, 2005
2
US
Is ODBC connection pooling server-side or client-side?

More specifically, if two client-side applications that are on separate machines access a MySQL database through ODBC, then will both applications have access to the same connection pool on the server?
 
I think that you're right that a third machine can not access another machine's connection in ODBC.

However, I beleive that it should be possible. If I remember correctly, then a web server - such as Tomcat that uses JDBC connection pooling - allows clients to reuse a connection that may just have been used by a client on a different machine.

Since the connection is stored on the server, then it should be able to be able to give the connection to any number of clients that it wishes.

I could be wrong, though.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top