Extensions.SQL.ResultSet
Jump to navigation
Jump to search
Classification
Name | ResultSet |
Short Description | Used to handle the rows read from the database |
Class | Simple Data Type |
Base Data Type | ComplexType |
Default Value | Empty |
Provide a Literal | No |
SpecifiedBy | ISO 13209-4 |
Standard Compliant | Yes |
Description
The ResultSet data type is used to handle the rows read from the database. A result set contains of zero ore more rows. Each row contains one or more values.
Core Conversion
The following table shows the rules for conversion to another data type:
Conversion | Result | Sample |
ToBoolean | Undefined (should not be used) | |
ToInteger | Undefined (should not be used) | |
ToFloat | Undefined (should not be used) | |
ToString | Returns the value of memory connection in Java platform. In Dotnet platform, returns the name of the screen resource. | String s = ToString(resultSetVariable); // Returns "opentestsystem.otf.model.types.Connection@7f383f" (in Java) / "OpenTestSysTem.Otf.Model.Data.ResultSet" (in DotNet) |
ToByteField | Undefined (should not be used) |
Sample
SQL.ResultSet resultSetVariable;