KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > sql > Driver

java.sql
Interface Driver

See Also:
Top Examples, Source Code, DriverManager, Connection

boolean acceptsURL(String url)
                   throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


[866]Validate a JDBC driver
By prashanth { dot } madhusudan { at } honeywell { dot } com on 2004/08/25 05:00:21  Rate
Driver.acceptsURL ( hm_db_url ) ;

Connection connect(String url,
                   Properties info)
                   throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int getMajorVersion()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


int getMinorVersion()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


DriverPropertyInfo[] getPropertyInfo(String url,
                                     Properties info)
                                     throws SQLException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


boolean jdbcCompliant()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags