Class java.sql.DriverPropertyInfo
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.sql.DriverPropertyInfo

java.lang.Object
   |
   +----java.sql.DriverPropertyInfo

public class DriverPropertyInfo
extends Object

The DriverPropertyInfo class is only of interest to advanced programmers who need to interact with a Driver via getDriverProperties to discover and supply properties for connections.


Variable Index

 o choices
If the value may be selected from a particular set of values, then this is an array of the possible values.
 o description
A brief description of the property.
 o name
The name of the property.
 o required
"required" is true if a value must be supplied for this property during Driver.connect.
 o value
"value" specifies the current value of the property, based on a combination of the information supplied to getPropertyInfo, the Java environment, and driver supplied default values.

Constructor Index

 o DriverPropertyInfo(String, String)
Initial constructor.

Variables

 o name
  public String name
The name of the property.
 o description
  public String description
A brief description of the property. This may be null.
 o required
  public boolean required
"required" is true if a value must be supplied for this property during Driver.connect. Otherwise the property is optional.
 o value
  public String value
"value" specifies the current value of the property, based on a combination of the information supplied to getPropertyInfo, the Java environment, and driver supplied default values. This may be null if no value is known.
 o choices
  public String choices[]
If the value may be selected from a particular set of values, then this is an array of the possible values. Otherwise it should be null.

Constructors

 o DriverPropertyInfo
  public DriverPropertyInfo(String name,
                            String value)
Initial constructor. The name is the name of the property and the value is the current value, which may be null.

All Packages  Class Hierarchy  This Package  Previous  Next  Index