Results 1 to 2 of 2
Thread: JDBC DataBase Connection
- 04-03-2010, 01:37 PM #1
JDBC DataBase Connection
Hello
What is the best way to manipulate a database connection?
I have a .properties file with all necessary information to create a DataSource, after reading this file once, I have instance of SQLServerDataSource dataSource available.
What I was doing was, for each method that interact with database , I create a Connection con = dataSource.getConnection() at start, and at the end I close that connection con.close().
Is this the right way? Or should I always use the same connection and close it in the end of "application"?Ubuntu, Linux for human Beings!
- 04-06-2010, 02:13 AM #2
I think the convention of a long lived database connection (e.g. application lifetime, or connection for user logged in session lifetime) is generally useful for when a very small number of concurrent users is expected, like perhaps 6 to 50 users at once. ever.
or where perhaps the database is itself part of the application logic and it makes sense for the user to log into the database as their user name.
Typically in web-based applications the connection per use (like request scope) where a connection is fetched from a pool, used, and then 'closed', which really doesn't close it but returns it to the pool; is a much more scaleable mechanism to allow for more concurrent users, and possibly higher thruput or performance. This also assumes the database connection would be an application user (e.g. not the requesting user's credentials).
Though there are ways to have a connection per user logged in session in a web application as well. I would say to use the pool based connection per request unless there is a compelling reason to use conection per application.
Similar Threads
-
JDBC connection
By evermore in forum JDBCReplies: 1Last Post: 03-19-2010, 08:35 AM -
Issue with JDBC Connection to SQL Server 2005 database when default schema is changed
By NicoleVT2000 in forum New To JavaReplies: 0Last Post: 12-01-2009, 10:01 PM -
JDBC Connection...
By onlysumitg in forum JDBCReplies: 3Last Post: 08-21-2009, 11:34 AM -
jdbc connection problem
By Assaf A in forum JDBCReplies: 0Last Post: 12-01-2008, 05:08 PM -
JDBC connection
By Java Tip in forum Java TipReplies: 0Last Post: 11-10-2007, 07:39 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks