Name

DriverPropertyInfo

Synopsis

The DriverPropertyInfo class contains the properties required to create a new database connection using a particular driver. It is returned by the getDriverProperties() method of Driver. This class is only useful for programmers who need to interact directly with the driver in a dynamic manner.

public class DriverPropertyInfo {
// Public Constructors
   public DriverPropertyInfo( String name, String value);  
// Public Instance Fields
   public String[] choices;  
   public String description;  
   public String name;  
   public boolean required;  
   public String value;  
}

Returned By

Driver.getPropertyInfo()

Get Java Enterprise in a Nutshell, Second Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.