OracleBoolean Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the OracleBoolean structure.
Overloads
OracleBoolean(Boolean) |
Initializes a new instance of the OracleBoolean structure using the specified |
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
.