public interface MySqlRow extends MySqlReadable, io.r2dbc.spi.Row
Row for a data row of a MySqlResult.| Modifier and Type | Method and Description |
|---|---|
<T> T |
get(int index,
ParameterizedType type)
Returns the value which can be a generic type.
|
<T> T |
get(String name,
ParameterizedType type)
Returns the value which can be a generic type.
|
MySqlRowMetadata |
getMetadata()
Returns the
MySqlRowMetadata for all columns in this row. |
MySqlRowMetadata getMetadata()
MySqlRowMetadata for all columns in this row.getMetadata in interface io.r2dbc.spi.RowMySqlRowMetadata for all columns in this row@Nullable
<T> T get(int index,
ParameterizedType type)
UNSTABLE: it is not a standard of r2dbc-spi, so it may be changed in the future.
T - the type of the item being returned.index - the index starting at 0type - the parameterized type of item to return.null.IllegalArgumentException - if name or type is null.IndexOutOfBoundsException - if index is out of rangeUnsupportedOperationException - if the row is containing last inserted ID@Nullable <T> T get(String name, ParameterizedType type)
UNSTABLE: it is not a standard of r2dbc-spi, so it may be changed in the future.
T - the type of the item being returned.name - the name of the column.type - the parameterized type of item to return.null.IllegalArgumentException - if name or type is null.NoSuchElementException - if name is not a known readable column or out parameterUnsupportedOperationException - if the row is containing last inserted IDCopyright © 2018–2024 asyncer.io. All rights reserved.