getObject
Retrieves an object from the current data row at the specified index position.
Return
The object at the specified index
Parameters
The first column is at position one, the second at position two, and onwards.
Retrieves an object from the current data row with the specified column name.
Return
The object in the specified column
Parameters
The column name
Retrieves an object from the current data row at the specified index position, and converts the stored SQL type to the requested type, if the conversion is supported.
Return
The object converted to the specified type
Parameters
The target type for conversion
The first column is at position one, the second at position two, and onwards.
The class representing the target type
Retrieves an object from the current data row with the specified column name, and converts the stored SQL type to the requested type, if the conversion is supported.
Return
The object converted to the specified type
Parameters
The target type for conversion
The column name
The class representing the target type
Retrieves an object from the current data row at the specified index position, and converts the stored SQL type to the requested type, if the conversion is supported, using an additional column type hint.
This method provides additional type information through the columnType parameter, which can be used for more precise type conversion.
Return
The object converted to the specified type
Parameters
The target type for conversion
The first column is at position one, the second at position two, and onwards.
The class representing the target type
Additional type information for the column (currently unused in default implementation)
Retrieves an object from the current data row with the specified column name, and converts the stored SQL type to the requested type, if the conversion is supported, using an additional column type hint.
This method provides additional type information through the columnType parameter, which can be used for more precise type conversion.
Return
The object converted to the specified type
Parameters
The target type for conversion
The column name
The class representing the target type
Additional type information for the column (currently unused in default implementation)