OracleBoolean Structure
Represents the value returned from a database comparison operation between Oracle data types, and exposes methods used to perform data type conversions.
Assembly: System.Data.OracleClient (in System.Data.OracleClient.dll)
| Name | Description | |
|---|---|---|
![]() | 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. |
| Name | Description | |
|---|---|---|
![]() ![]() | And(OracleBoolean, OracleBoolean) | Computes the bitwise AND of two specified OracleBoolean structures. |
![]() | CompareTo(Object) | Compares this OracleBoolean structure to a specified object and returns an indication of their relative values. |
![]() | Equals(Object) | Compares the supplied object parameter to the OracleBoolean.(Overrides ValueType.Equals(Object).) |
![]() ![]() | Equals(OracleBoolean, OracleBoolean) | Compares two OracleBoolean structures to determine if they are equal. |
![]() | GetHashCode() | Returns the hash code for this instance.(Overrides ValueType.GetHashCode().) |
![]() | GetType() | |
![]() ![]() | NotEquals(OracleBoolean, OracleBoolean) | Compares two instances of OracleBoolean to determine if they are not equal. |
![]() ![]() | OnesComplement(OracleBoolean) | Performs a ones complement operation on the supplied OracleBoolean structures. |
![]() ![]() | Or(OracleBoolean, OracleBoolean) | Performs a bitwise OR operation on the two specified OracleBoolean structures. |
![]() ![]() | Parse(String) | Converts the specified String representation of a logical value to its OracleBoolean equivalent. |
![]() | ToString() | Converts the current Value to a string.(Overrides ValueType.ToString().) |
![]() ![]() | Xor(OracleBoolean, OracleBoolean) | Performs a bitwise exclusive-OR operation on the supplied parameters. |
| Name | Description | |
|---|---|---|
![]() ![]() | False | Represents a false value that can be assigned to the Value property of an instance of the OracleBoolean structure. |
![]() ![]() | Null | Represents a null value that can be assigned to the Value property of an instance of the OracleBoolean structure. |
![]() ![]() | One | Represents a value of one that can be assigned to the Value property of an instance of the OracleBoolean structure. |
![]() ![]() | True | Represents a true value that can be assigned to the Value property of an instance of the OracleBoolean structure. |
![]() ![]() | Zero | Represents a value of zero that can be assigned to the Value property of an instance of the OracleBoolean structure. |
| Name | Description | |
|---|---|---|
![]() ![]() | BitwiseAnd(OracleBoolean, OracleBoolean) | Computes the bitwise AND of two specified OracleBoolean structures. |
![]() ![]() | BitwiseOr(OracleBoolean, OracleBoolean) | Computes the bitwise OR of its two OracleBoolean operands. |
![]() ![]() | Equality(OracleBoolean, OracleBoolean) | Compares two instances of an OracleBoolean for equality. |
![]() ![]() | ExclusiveOr(OracleBoolean, OracleBoolean) | Performs a bitwise exclusive-OR operation on the supplied OracleBoolean parameters. |
![]() ![]() | Narrowing(OracleBoolean to Boolean) | Converts an OracleBoolean to a Boolean. |
![]() ![]() | Narrowing(OracleNumber to OracleBoolean) | Converts the OracleNumber parameter to an OracleBoolean structure. |
![]() ![]() | Narrowing(String to OracleBoolean) | Converts a string to an OracleBoolean structure. |
![]() ![]() | False(OracleBoolean) | Used to test the Value of the OracleBoolean to determine whether it is false. |
![]() ![]() | Widening(Boolean to OracleBoolean) | Converts a Boolean value to an OracleBoolean. |
![]() ![]() | Inequality(OracleBoolean, OracleBoolean) | Compares two instances of OracleBoolean for inequality. |
![]() ![]() | LogicalNot(OracleBoolean) | Performs a NOT operation on an OracleBoolean. |
![]() ![]() | OnesComplement(OracleBoolean) | Performs a one's complement operation on the specified OracleBoolean. |
![]() ![]() | True(OracleBoolean) | Used to test the Value of the OracleBoolean to determine whether it is true. |
The key difference between an OracleBoolean structure and a standard Boolean value is that, where a standard Boolean has two possible values, true and false, an OracleBoolean structure has three possible values, True, False, or Null.
An OracleBoolean structure does not map to an Oracle Boolean data type; it is exposed as a convenience support class.
Available since 1.1
Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.




