public static read(rows as ResultSet, index as Int, targetType as Type) as Object:
Reads and converts one column without silent narrowing.
| Parameter | Description |
|---|---|
rows | Result set positioned on the row to read. |
index | One-based SQL column index. |
targetType | Exact Klyn type required by the entity mapping. |
The converted value, or null for an SQL NULL.
value = SQLValueReader.read(rows, 1, Int.type)