Most visited

Recently visited

Added in API level 1

DriverPropertyInfo

public class DriverPropertyInfo
extends Object

java.lang.Object
   ↳ java.sql.DriverPropertyInfo


用于建立连接的驱动程序属性。 DriverPropertyInfo类只对高级程序员感兴趣,他们需要通过方法getDriverProperties与驱动程序交互来发现和提供连接属性。

Summary

Fields

public String[] choices

如果可以从特定的一组值中选择字段DriverPropertyInfo.value的值,则可能的值的数组; 否则为空。

public String description

该属性的简要说明,可能为空。

public String name

财产的名称。

public boolean required

如果必须在 Driver.connectfalse期间为此属性提供值,则 required字段为 true

public String value

value字段根据提供给方法 getPropertyInfo ,Java环境和驱动程序提供的默认值的信息的组合来指定属性的当前值。

Public constructors

DriverPropertyInfo(String name, String value)

用给定的名称和值构造一个 DriverPropertyInfo对象。

Inherited methods

From class java.lang.Object

Fields

choices

Added in API level 1
String[] choices

如果可以从特定的一组值中选择字段DriverPropertyInfo.value的值,则可能的值的数组; 否则为空。

description

Added in API level 1
String description

该属性的简要说明,可能为空。

name

Added in API level 1
String name

财产的名称。

required

Added in API level 1
boolean required

如果必须在 Driver.connectfalse期间为此属性提供值,则 required字段为 true

value

Added in API level 1
String value

value字段根据提供给方法getPropertyInfo的信息,Java环境和驱动程序提供的默认值的组合来指定属性的当前值。 如果未知值,则该字段可能为空。

Public constructors

DriverPropertyInfo

Added in API level 1
DriverPropertyInfo (String name, 
                String value)

用给定的名称和值构造一个DriverPropertyInfo对象。 descriptionchoices被初始化为nullrequired被初始化为false

Parameters
name String: the name of the property
value String: the current value, which may be null

Hooray!