By Ramakrishna on Jul 30, 2010 in Jdbc questions, jdbc questions, Stored Procedures | 0 Comments
you are reading my article because you want to learn how to write stored procedures. You are new to this, and you don’t know where to start. You are exactly where I was when I wanted to learn how to write stored procedures. The purpose of this article is to help the developer who doesn’t [...]
By Ramakrishna on Oct 27, 2008 in Connection Pooling Benifits | 0 Comments
Benefits of Connection Pooling: Connection pooling can greatly increase the performance of your Java application, while reducing overall resource usage. The main benefits to connection pooling are: Reduced connection creation time: While this is not usually an issue with the quick connection setup that MySQL offers compared to other databases, creating connections still has networking [...]
By Ramakrishna on Oct 27, 2008 in Connection Pooling, Jdbc executeUpdate | 0 Comments
Q) What Is Connection Pooling? A) Connection pooling is a technique of creating and managing a pool of connections that are ready for use by any thread that needs them. This technique of “pooling” connections is based on the fact that most applications only need a thread to have access to a JDBC connection when [...]