aspose file tools
The moose likes JDBC and the fly likes Iimplemenatation classes of Connection,Statement,PrepareStatement,CallabaleStatement? Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Databases » JDBC
Reply Bookmark "Iimplemenatation classes of Connection,Statement,PrepareStatement,CallabaleStatement?" Watch "Iimplemenatation classes of Connection,Statement,PrepareStatement,CallabaleStatement?" New topic
Author

Iimplemenatation classes of Connection,Statement,PrepareStatement,CallabaleStatement?

Satyajeet Kadam
Ranch Hand

Joined: Oct 19, 2006
Posts: 202
Q1)Where is the implemenatation of Connection,Statement,PrepareStatement,CallabaleStatement?
Jeevan Reddy
Ranch Hand

Joined: Nov 10, 2009
Posts: 142
It is provided in the jdbc jar provided by different vendors oracle, db2 etc.
If you have the software, you can open the jar and see the implementation for them.

Regards,
Jeevan.


SCJP 1.6 (94%)
http://faq.javaranch.com/java/JspFaq
Satyajeet Kadam
Ranch Hand

Joined: Oct 19, 2006
Posts: 202
Connection con=DriverManager.getConnection();

Q1) From DriverManager class we are Connection object.Do DriverManager class provides implementation of it?
Reason behinng asking this question i was asked interview.Where are implementation classes. If there is interface someone has provide implemntation for
it.

Jeanne Boyarsky
internet detective
Marshal

Joined: May 26, 2003
Posts: 26193
    
  66

Yes. As Jeevan said, the implementation is provided by the jdbc driver jar.

DriverManager provides a reference to the class, not the implementing class.


[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Iimplemenatation classes of Connection,Statement,PrepareStatement,CallabaleStatement?
 
Similar Threads
Prepared statement - static variable
NullPointerException in prepareStatement
method with SQL parameter
Jdbc Prepared Statement execute()
Does jboss support pool of preparedstatement?