Result
Result represents a row of result set returned by a Query.
A Result may be referenced only while the ResultSet that contains it is open. An Attempt to reference a Result after calling ResultSet.close on the ResultSet that contains it will throw and IllegalStateException
Properties
Functions
The result at the given index interpreted as an Array. Returns null if the value cannot be so interpreted.
The result value for the given key as a Array Returns null if the key doesn't exist or if the value is not an Array
The result at the given index interpreted as a Blob. Returns null if the value cannot be so interpreted.
The result value for the given key as a Blob Returns null if the key doesn't exist or if the value is not a Blob
The result at the given index interpreted as a boolean. Returns false if the value cannot be so interpreted.
The result value for the given key as a boolean Returns false if the key doesn't exist or if the value is not a boolean
The result at the given index interpreted as an Instant date. Returns null if the value cannot be so interpreted.
The result value for the given key as an Instant date Returns null if the key doesn't exist or if the value is not a date
The result at the given index interpreted as a Dictionary. Returns null if the value cannot be so interpreted.
The result value for the given key as a Dictionary Returns null if the key doesn't exist or if the value is not a Dictionary
The result at the given index interpreted as a double. Returns 0.0 if the value cannot be so interpreted.
The result value for the given key as a double Returns 0.0 if the key doesn't exist or if the value is not a double
The result at the given index interpreted as a float. Returns 0.0F if the value cannot be so interpreted.
The result value for the given key as a float Returns 0.0F if the key doesn't exist or if the value is not a float
The result at the given index interpreted as and an int. Returns 0 if the value cannot be so interpreted.
The result value for the given key as an int Returns 0 if the key doesn't exist or if the value is not a int
The result at the given index interpreted as a long. Returns 0 if the value cannot be so interpreted.
The result value for the given key as a long Returns 0L if the key doesn't exist or if the value is not a long
The result at the given index interpreted as a Number. Returns null if the value cannot be so interpreted.
The result value for the given key as a Number Returns null if the key doesn't exist or if the value is not a Number
The result at the given index converted to a String
The result value for the given key as a String Returns null if the key doesn't exist.
The result value at the given index.
The result value for the given key as an Object Returns null if the key doesn't exist.