File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes JDBC and the fly likes Statement,PrepareStatement 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 "Statement,PrepareStatement" Watch "Statement,PrepareStatement" New topic
Author

Statement,PrepareStatement

Sudhakar Gaharwar
Greenhorn

Joined: Oct 10, 2005
Posts: 15
Statement and prepareStatement are interface so what's the name of their implementation class. I mean what is the name of the class which exactly defining the methods of statement and preparestatemnt..



Beginning is the half of every action..............
stu derby
Ranch Hand

Joined: Dec 15, 2005
Posts: 333
The Statement and PreparedStatement interfaces define the methods those classes support. You can work very succesfully with JDBC just using the interface methods.

Vendor implementations of JDBC drivers sometimes have additional methods, but many programmers avoid using vendor methods because they're not part of the JDBC standard and therefore not available when using other drivers and databases.
Kj Reddy
Ranch Hand

Joined: Sep 20, 2003
Posts: 1697
Implementation class names depends on vendor, normally we do not use those class names as they are not part Java api.
 
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: Statement,PrepareStatement
 
Similar Threads
SimpleJdbcDaoSupport
method with SQL parameter
Iimplemenatation classes of Connection,Statement,PrepareStatement,CallabaleStatement?
Would this cause problems closing statements ?
Pre compilation of Prepared Statement