> which class implement connection interface in java and how
Hi. JDBC is a specification which defines a Java Interface
(several actually). Connection is one of them. Java itself
does not provide any implementation of a Connection. The
implementations of Connection are to be found in the various
JDBC drivers, provided by the DBMS vendors and independent
driver makers.
Joe Weinstein at BEA Systems