OracleBoolean Constructors

Definition

Initializes a new instance of the OracleBoolean structure.

Overloads

OracleBoolean(Boolean)

Initializes a new instance of the OracleBoolean structure using the specified Boolean.

OracleBoolean(Int32)

Initializes a new instance of the OracleBoolean structure using the specified integer.

OracleBoolean(Boolean)

Initializes a new instance of the OracleBoolean structure using the specified Boolean.

public:
 OracleBoolean(bool value);
public OracleBoolean (bool value);
new System.Data.OracleClient.OracleBoolean : bool -> System.Data.OracleClient.OracleBoolean
Public Sub New (value As Boolean)

Parameters

value
Boolean

The Boolean to be used as the initial value of the OracleBoolean structure.

Applies to

OracleBoolean(Int32)

Initializes a new instance of the OracleBoolean structure using the specified integer.

public:
 OracleBoolean(int value);
public OracleBoolean (int value);
new System.Data.OracleClient.OracleBoolean : int -> System.Data.OracleClient.OracleBoolean
Public Sub New (value As Integer)

Parameters

value
Int32

The integer to be used as the initial value of the OracleBoolean structure.

Remarks

If value is 0, the OracleBoolean is false; otherwise it is true.

Applies to