what happens if connection is not closed?

Answers were Sorted based on User's Feedback



what happens if connection is not closed?..

Answer / pooja

if we don't close the connection , it wil lead to
connection memory leakage.unless until application
server/web server is shut down ,connection wil remain
activate even though the user logs out .

Is This Answer Correct ?    66 Yes 2 No

what happens if connection is not closed?..

Answer / srikanth

suppose if there are 10 database connections available with
the database sever and 10 clients request for the connection
if the database sever grants all of them with a connection
and after their usage if they do not close the connections
the database server would not serve for another request for
that reason we need to close the connection and it mandatory
....

Is This Answer Correct ?    24 Yes 8 No

what happens if connection is not closed?..

Answer / siva mukesh

As per my knowledge "We must close the database connection.if not the database will not update even after executing query also.For example our program is to update EMP table from our database.Now check this program without closing the connection and closing the connection."

Is This Answer Correct ?    3 Yes 2 No

what happens if connection is not closed?..

Answer / deepak cheela

For suppose if two database connections are available for
two client requests then database server grants all of them
connection after usage of one client request is over that
client must close the connection becoz server create a
session with clent requests.if so we do without clossing the
connection the DBserver thinks client is still processing
then load wil be on DBserver and performance will decrease.

Is This Answer Correct ?    1 Yes 1 No

what happens if connection is not closed?..

Answer / deepak upadhyay

If we don't close the connection ,we will get memory leakage...and it will open even after log out..and also create distinguish between two user login,it might be interchange...

Is This Answer Correct ?    0 Yes 0 No

what happens if connection is not closed?..

Answer / prathao

nothing wil be happen if the connection wil not closed but
we can close it because it is not mandatory to close the
connection if we can't close connection our application wil
be worked

Is This Answer Correct ?    1 Yes 19 No

what happens if connection is not closed?..

Answer / varma

According to my understanding once we exit java application
then all opened database connections from this application
will be closed automatically

Is This Answer Correct ?    6 Yes 40 No

Post New Answer

More JDBC Interview Questions

What are static and dynamic queries?

1 Answers  


How to store images in database?

2 Answers  


How to achieve JDBC Connection Pooling using JDBC DataSource and JNDI in Apache Tomcat Server?

0 Answers  


How does jdbc work?

0 Answers  


Why do you use a data source object for a connection?

0 Answers  






Why resultset is used in java?

0 Answers  


Explain in detail about JDBC and its general features?

0 Answers  


password, is stored in as plain text. What can I do to protect my passwords?

0 Answers  


How can we retrieve data from the resultset?

0 Answers  


What is resultsetmetadata?

0 Answers  


What do you understand by DDL and DML statements?

0 Answers  


How to create Connection interface object because it is Interface , Interface is not instansiated?

9 Answers   Aptech, CTS, HCL,


Categories