java.sql
public class DriverPropertyInfo extends Object
| Field Summary | |
|---|---|
| String[] | choices
If values are restricted to certain choices, this is the list of valid
ones. |
| String | description
A description of the property, possibly null. |
| String | name
The name of the property. |
| boolean | required
A flag indicating whether or not a value for this property is required
in order to connect to the database. |
| String | value
This is the value of the property. |
| Constructor Summary | |
|---|---|
| DriverPropertyInfo(String name, String value)
This method initializes a new instance of DriverPropertyInfo
with the specified name and value. | |
null.null.DriverPropertyInfo
with the specified name and value. All other fields are defaulted.
Parameters: name The name of the property. value The value to assign to the property.