public interface MySqlRowMetadata
extends io.r2dbc.spi.RowMetadata
RowMetadata for a row metadata returned from a MySQL database.| Modifier and Type | Method and Description |
|---|---|
boolean |
contains(String columnName) |
MySqlColumnMetadata |
getColumnMetadata(int index) |
MySqlColumnMetadata |
getColumnMetadata(String name) |
List<? extends MySqlColumnMetadata> |
getColumnMetadatas() |
MySqlColumnMetadata getColumnMetadata(int index)
getColumnMetadata in interface io.r2dbc.spi.RowMetadataindex - the column index starting at 0MySqlRowMetadata for one column in this rowIndexOutOfBoundsException - if index is out of rangeMySqlColumnMetadata getColumnMetadata(String name)
getColumnMetadata in interface io.r2dbc.spi.RowMetadataname - the name of the column. Column names are case-insensitive. When a get method contains
several columns with same name, then the value of the first matching column will be
returnedMySqlColumnMetadata for one column in this rowIllegalArgumentException - if name is nullNoSuchElementException - if there is no column with the nameList<? extends MySqlColumnMetadata> getColumnMetadatas()
getColumnMetadatas in interface io.r2dbc.spi.RowMetadataMySqlColumnMetadata for all columns in this rowboolean contains(String columnName)
contains in interface io.r2dbc.spi.RowMetadatacolumnName - the name of the column. Column names are case-insensitive.true if this object contains metadata for columnName; false otherwise.Copyright © 2018–2024 asyncer.io. All rights reserved.