public interface DecodeContext
| Modifier and Type | Method and Description |
|---|---|
static DecodeContext |
command()
Get an instance of
DecodeContext for command phase. |
static DecodeContext |
fetch()
Get an instance of
DecodeContext when fetching result for prepared statement executing. |
static DecodeContext |
login()
Get an instance of
DecodeContext for login phase. |
static DecodeContext |
preparedMetadata(boolean eofDeprecated,
int totalColumns,
int totalParameters)
Get an instance of
DecodeContext when receive metadata of prepared statement executing. |
static DecodeContext |
prepareQuery()
Get an instance of
DecodeContext after prepare statement query. |
static DecodeContext |
result(boolean eofDeprecated,
int totalColumns)
Get an instance of
DecodeContext when receive a result. |
static DecodeContext login()
DecodeContext for login phase.static DecodeContext command()
DecodeContext for command phase.static DecodeContext prepareQuery()
DecodeContext after prepare statement query.static DecodeContext fetch()
DecodeContext when fetching result for prepared statement executing.static DecodeContext result(boolean eofDeprecated, int totalColumns)
DecodeContext when receive a result.eofDeprecated - if EOF is deprecated.totalColumns - the number of total column metadata.static DecodeContext preparedMetadata(boolean eofDeprecated, int totalColumns, int totalParameters)
DecodeContext when receive metadata of prepared statement executing.eofDeprecated - if EOF is deprecated.totalColumns - the number of total column metadata.totalParameters - the number of total parameters.Copyright © 2018–2023 asyncer.io. All rights reserved.