public class IfxDriver
extends java.lang.Object
implements java.sql.Driver
Each driver should supply a class that implements the Driver interface.
The DriverManager will try to load as many drivers as it can find and then for any given connection request, it will ask each driver in turn to try to connect to the target URL.
It is strongly recommended that each Driver class should be small and standalone so that the Driver class can be loaded and queried without bringing in vast quantities of supporting code.
When a Driver class is loaded, it should create an instance of itself and register it with the DriverManager. This means that a user can load and register a driver by doing Class.forName("foo.bah.Driver").
Issues:
| Constructor and Description |
|---|
IfxDriver() |
| Modifier and Type | Method and Description |
|---|---|
boolean |
acceptsURL(java.lang.String url)
Returns true if the driver thinks that it can open a connection
to the given URL.
|
java.sql.Connection |
connect(java.lang.String url,
java.util.Properties prop)
Try to make a database connection to the given URL.
|
static java.lang.String |
getJDBCVersion()
Return the current release version of JDBC.
|
static int |
getMajorMinorVersion()
Get the driver's major-minor version number.
|
int |
getMajorVersion()
Get the driver's major version number.
|
int |
getMinorVersion()
Get the driver's minor version number.
|
java.util.logging.Logger |
getParentLogger() |
static java.util.List<org.bson.BSONObject> |
getPreparedStatementInfo() |
java.sql.DriverPropertyInfo[] |
getPropertyInfo(java.lang.String url,
java.util.Properties prop)
The getPropertyInfo method is intended to allow a generic GUI
tool to discover what properties it should prompt a human for
in order to get enough information to connect to a database.
|
boolean |
jdbcCompliant()
Report whether the Driver is a genuine JDBC COMPLIANT (tm)
driver.
|
public java.sql.Connection connect(java.lang.String url,
java.util.Properties prop)
throws java.sql.SQLException
The driver should raise a SQLException if it is the right driver to connect to the given URL, but has trouble connecting to the database.
The java.util.Properties argument can be used to passed arbitrary string tag/value pairs as connection arguments. Normally at least "user" and "password" properties should be included in the Properties.
We support url's of the form: jdbc::// : [/dbname][:name=(value) [;name=(value)]...] everything in brackets '[ ]' is optional Also, the database name ([/dbname]) can be a name=value property.
connect in interface java.sql.Driverurl - - The URL of the database to connect toprop - - a list of arbitrary string tag/value pairs as connection
arguments; normally at least a "user"
and "password" property should be included
Can be nulljava.sql.SQLExceptionpublic boolean acceptsURL(java.lang.String url)
throws java.sql.SQLException
acceptsURL in interface java.sql.Driverurl - - The URL of the database.java.sql.SQLExceptionpublic java.sql.DriverPropertyInfo[] getPropertyInfo(java.lang.String url,
java.util.Properties prop)
throws java.sql.SQLException
getPropertyInfo in interface java.sql.Driverurl - - The URL of the database to connect to.prop - - A proposed list of tag/value pairs that will be sent on
connect open.java.sql.SQLExceptionpublic int getMajorVersion()
getMajorVersion in interface java.sql.Driverpublic int getMinorVersion()
getMinorVersion in interface java.sql.Driverpublic static int getMajorMinorVersion()
public boolean jdbcCompliant()
JDBC compliance requires full support for the JDBC API and full support for SQL 92 Entry Level. It is expected that JDBC compliant drivers will be available for all the major commercial databases. This method is not intended to encourage the development of non-JDBC compliant drivers, but is a recognition of the fact that some vendors are interested in using the JDBC API and framework for lightweight databases that do not support full database functionality, or for special databases such as document information retrieval where a SQL implementation may not be feasible.
jdbcCompliant in interface java.sql.Driverpublic static java.lang.String getJDBCVersion()
public java.util.logging.Logger getParentLogger()
throws java.sql.SQLFeatureNotSupportedException
getParentLogger in interface java.sql.Driverjava.sql.SQLFeatureNotSupportedExceptionpublic static java.util.List<org.bson.BSONObject> getPreparedStatementInfo()