convert
Converts a raw value to the expected type using registered converters.
Return
The converted value.
Parameters
The raw value to convert.
The Kotlin type expected as the result.
The PostgreSQL type of the raw value.
Optional segment name (e.g., property name or array index) for debugging purposes. If a MappingException occurs during conversion, this segment is added to the exception's path to help trace the exact location of the error in nested structures.
Converts a raw value to the expected type using registered converters, resolving the PostgreSQL type from its OID.
Return
The converted value.
Parameters
The raw value to convert.
The Kotlin type expected as the result.
The PostgreSQL OID of the raw value.
Optional segment name (e.g., property name or array index) for debugging purposes. If a MappingException occurs during conversion, this segment is added to the exception's path to help trace the exact location of the error in nested structures.
Throws
if sourceOid names no known type.