QueryValue class | QSYS API Reference Guide
Represents a Value stored in a SQL Query Result.
Namespace: ASNA.QSys.Runtime.JobSupport Assembly: ASNA.QSys.Runtime.dll
Inheritance: Object
Constructors
Name | Description |
---|---|
QueryValue(Object) | Initializes a new instance of QueryValue class. |
QueryValue(Object)
Initializes a new instance of QueryValue class.
QueryValue(Object)
Parameters
Type | Parameter name | Description |
---|---|---|
Object | value | Initial value. |
Properties
Type | Name | Description |
---|---|---|
Object | Value | Gets the underlying value |
Methods
Signature | Description |
---|---|
ToDateTime() | Gets the underlying value by converting it to a DateTime object. |
ToDecimal() | Gets the underlying value by converting it to a Decimal object. |
ToInt64() | Gets the underlying value by converting it to a Int64 object. |
ToString() | Gets the underlying value by converting it to a String object. |
ToTime() | Gets the underlying value by converting it to a DateTime object. |
DateTime ToDateTime()
Gets the underlying value by converting it to a DateTime object.
DateTime ToDateTime()
decimal ToDecimal()
Gets the underlying value by converting it to a Decimal object.
decimal ToDecimal()
long ToInt64()
Gets the underlying value by converting it to a Int64 object.
long ToInt64()
string ToString()
Gets the underlying value by converting it to a String object.
string ToString()
DateTime ToTime()
Gets the underlying value by converting it to a DateTime object.
DateTime ToTime()