difference between connection = null and connection.close()
843859Aug 5 2005 — edited Aug 6 2005is it correct
connection = null means connection object is eligible for garbage collection and does not return to connection pool
and f or
connection.close() means the connection object return to the
connection pool
is there any other difference between this ....?????