Hi.........
Where i can find the implemented methods of Statement
Interface of java.sql pkg.
In this, we are just calling the methods like executeQuery() ,
executeUpdate() , etc of the this interface .
Thanks
Srinivas.
Thomas Fritsch - 08 Feb 2006 12:09 GMT
srinivas.veeranki@gmail.com schrieb:
> Where i can find the implemented methods of Statement
> Interface of java.sql pkg.
In the official Java API doc of package java.sql:
http://java.sun.com/j2se/1.4.2/docs/api/java/sql/package-summary.html
> In this, we are just calling the methods like executeQuery() ,
> executeUpdate() , etc of the this interface .

Signature
"Thomas:Fritsch$ops:de".replace(':','.').replace('$','@')
Alun Harford - 08 Feb 2006 22:49 GMT
> Hi.........
> Where i can find the implemented methods of Statement
> Interface of java.sql pkg.
>
> In this, we are just calling the methods like executeQuery() ,
> executeUpdate() , etc of the this interface .
It's an interface.
All its methods must be implemenented in a non-abstract sub-class. If you're
analysing another interface, or an abstact class (unlikely in this case, as
they're likely to be in the driver, but you only use the external methods)
then you'll have to use reflection.
Alun Harford